wordpress-template/docker-compose.yml

34 lines
649 B
YAML
Raw Permalink Normal View History

2020-05-23 17:09:29 +02:00
version: "3.7"
2019-08-25 18:40:19 +02:00
x-default: &default
restart: unless-stopped
env_file: ./config/.env
services:
2020-05-23 17:09:29 +02:00
nginx:
image: nginx:alpine
restart: unless-stopped
depends_on:
- wordpress
volumes:
- ./config/nginx:/etc/nginx/conf.d
- ./data/wp:/var/www/html
2019-08-25 18:40:19 +02:00
ports:
- 80:80
2020-05-23 17:09:29 +02:00
wordpress:
<<: *default
build: ./config/wp
2019-08-25 18:40:19 +02:00
volumes:
2020-05-23 17:09:29 +02:00
- ./config/wp/custom.conf:/usr/local/etc/php-fpm.d/custom.conf
- ./data/wp:/var/www/html
- ./theme:/var/www/html/wp-content/themes/theme:ro
depends_on:
- db
2019-08-25 18:40:19 +02:00
db:
<<: *default
2020-05-23 17:09:29 +02:00
image: mariadb:10
2019-08-25 18:40:19 +02:00
volumes:
2020-05-23 17:09:29 +02:00
- ./data/db:/var/lib/mysql