Sign inSign up

getshifter/wp-languages

By getshifter

•Updated almost 4 years ago

Image
0

3.6K

getshifter/wp-languages repository overview

⁠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

Tag summary

Content type

Image

Digest

Size

114.5 MB

Last updated

about 5 years ago

docker pull getshifter/wp-languages