https://github.com/getshifter/wp-languages
all-languagepacks
https://github.com/getshifter/wp-languages
Last synced: about 1 year ago
JSON representation
all-languagepacks
- Host: GitHub
- URL: https://github.com/getshifter/wp-languages
- Owner: getshifter
- Created: 2020-04-15T05:58:31.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2024-07-24T05:02:34.000Z (almost 2 years ago)
- Last Synced: 2025-03-28T00:28:16.234Z (about 1 year ago)
- Language: Shell
- Size: 44.9 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WordPress Language Packs
https://make.wordpress.org/polyglots/teams/
dockerhub: https://hub.docker.com/repository/docker/getshifter/wp-languages
## Usage example
with docker-compose
```
version: '3.7'
services:
wp:
volumes:
- plugindata:/path/to/wp-content/languages
plugins:
image: getshifter/wp-languages:5.6
volumes:
- languages:/srv/languages
volumes:
languages:
```
multi-stage building
```
FROM getshifter/wp-languages:5.6 as languages
RUN /bin/true
FROM wordpress:latest
... do something ...
COPY --from=languages /srv/languages /path/to/wp-content/languages
```