32 lines
No EOL
580 B
YAML
32 lines
No EOL
580 B
YAML
version: '2'
|
|
|
|
volumes:
|
|
app-var:
|
|
|
|
services:
|
|
nginx:
|
|
volumes:
|
|
- /etc/letsencrypt:/etc/letsencrypt
|
|
env_file:
|
|
- .docker/production.env
|
|
|
|
php:
|
|
env_file:
|
|
- .docker/production.env
|
|
volumes:
|
|
- app-var:/var/www/var
|
|
|
|
db:
|
|
env_file:
|
|
- .docker/production.env
|
|
|
|
# rabbitmq:
|
|
# env_file:
|
|
# - ./.docker/production.env
|
|
|
|
# varnish:
|
|
# image: million12/varnish
|
|
# ports:
|
|
# - "80:80"
|
|
# env_file:
|
|
# - ./.docker/production.env |