Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 612 Bytes

README.md

File metadata and controls

36 lines (26 loc) · 612 Bytes

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