mybuddy/docker-compose.example.yml

20 lines
330 B
YAML
Raw Normal View History

version: "3.7"
2017-11-24 14:09:43 +00:00
services:
db:
image: postgres
environment:
- PGDATA=/db-data
volumes:
2019-10-04 09:46:02 +00:00
- db:/db-data:rw
app:
image: cdubzzz/babybuddy
env_file:
- docker.env
2017-11-24 14:09:43 +00:00
command: gunicorn -c /app/gunicorn.py babybuddy.wsgi
ports:
- "8000:8000"
depends_on:
- db
volumes:
2019-10-04 09:46:02 +00:00
db: {}