1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/docker-compose.yml
2015-06-17 10:07:50 +02:00

14 lines
219 B
YAML

web:
build: .
command: run db-migrate-and-start
ports:
- "4242:4242"
links:
- db
environment:
DATABASE_URL: postgres://postgres:unleash@db/postgres
db:
expose:
- "5432"
image: postgres:9.3