Files
full-stack-fastapi-template/{{cookiecutter.project_slug}}/docker-compose.shared.env.yml
Sebastián Ramírez 7f8bfc8faa 🎉 First commit, from couchbase generator, basic changes
not tested / updated yet
2019-02-09 19:42:36 +04:00

21 lines
427 B
YAML

version: '3.3'
services:
db:
env_file:
- env-postgres.env
environment:
- PGDATA=/var/lib/postgresql/data/pgdata
backend:
env_file:
- env-postgres.env
- env-backend.env
environment:
- SERVER_NAME=${DOMAIN}
- SERVER_HOST=https://${DOMAIN}
celeryworker:
env_file:
- env-postgres.env
- env-backend.env
environment:
- SERVER_HOST=https://${DOMAIN}