Files
node-tutorial/docker-compose.yml
T
Jackk Goh c1f1ada934 init
2018-03-15 16:11:38 +08:00

22 lines
381 B
YAML

server:
image: node:7
command: npm run start:dev
working_dir: /app
volumes:
- .:/app
environment:
PORT: 3000
CONNECTION_STRING_DEV: postgres://user:password@db/db
ports:
- "3000:3000"
- "5858:5858"
links:
- db
db:
image: postgres
expose:
- 5432
environment:
POSTGRES_PASSWORD: password
POSTGRES_USER: user
POSTGRES_DB: db