mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
77baaa5121
* Introduce unleash-docker as a sperate submodule. this is related to #135 and will solve #126 * keep ide-user-settings out of repo * Introduce unleash-docker as a sperate submodule. this is related to #135 and will solve #126 * mv unleash-docker to packages/unleash-docker * made docker work for now, by copying migrations * minro cleanup * docker on node:6 * minor cleanup
14 lines
220 B
YAML
14 lines
220 B
YAML
web:
|
|
build: .
|
|
command: npm run migrate-and-start
|
|
ports:
|
|
- "4242:4242"
|
|
links:
|
|
- db
|
|
environment:
|
|
DATABASE_URL: postgres://postgres:unleash@db/postgres
|
|
db:
|
|
expose:
|
|
- "5432"
|
|
image: postgres:9.3
|