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

14 lines
223 B
YAML

web:
build: .
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