The blog about containerisation, virtual machines and useful shell snippets and findings

Установка wordpress через docker

Проще пареной репы

wordpress:
  image: wordpress
  links:
    - db:mysql
  ports:
    - 8080:80

db:
  image: mysql:5
  environment:
    MYSQL_ROOT_PASSWORD: example

только затем лучше руками пофиксить лимиты

docker exec -it XXX bash
printf "\nphp_value post_max_size 64M\nphp_value upload_max_filesize 64M\n" >> .htaccess

перестартуем контейнеры и вуаля!