1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/docker-compose.yml

14 lines
223 B
YAML
Raw Normal View History

web:
build: .
2015-12-01 11:56:53 +01:00
command: npm 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