salix/docker-compose.yml

23 lines
474 B
YAML
Raw Normal View History

2018-12-27 15:10:55 +00:00
version: '3.5'
services:
2018-12-31 13:02:46 +00:00
app:
2018-12-27 15:10:55 +00:00
build:
context: .
2018-12-31 13:02:46 +00:00
dockerfile: services/nginx/Dockerfile
2018-12-27 15:10:55 +00:00
ports:
2018-12-31 13:02:46 +00:00
- 5000:80
image: salix:latest
restart: unless-stopped
links:
- api
api:
build: .
ports:
- 3001-3003:3000
2018-12-27 15:10:55 +00:00
environment:
2018-12-31 13:02:46 +00:00
NODE_ENV: test
2018-12-27 15:10:55 +00:00
restart: unless-stopped
2018-12-31 13:02:46 +00:00
image: salix-api
2018-12-27 15:10:55 +00:00
volumes:
2018-12-31 13:02:46 +00:00
- /config:/config