mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
14 lines
223 B
YAML
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
|