mybuddy/docker-compose.yml

13 lines
185 B
YAML
Raw Normal View History

2017-11-24 14:09:43 +00:00
version: "2"
services:
db:
image: postgres
web:
build: .
command: gunicorn -c /app/gunicorn.py babybuddy.wsgi
ports:
- "8000:8000"
depends_on:
- db