FitTrackee/docker-compose.yml

47 lines
890 B
YAML
Raw Normal View History

2018-01-07 18:58:30 +01:00
version: '3.3'
services:
db:
container_name: db
build:
context: ./mpwo_api/db
dockerfile: Dockerfile
ports:
- 5435:5432
environment:
- POSTGRES_USER=mpwo
- POSTGRES_PASSWORD=mpwo
api:
container_name: api
build:
context: ./mpwo_api
dockerfile: Dockerfile-dev
ports:
- 5001:5000
environment:
- FLASK_APP=server.py
- FLASK_DEBUG=1
- APP_SETTINGS=mpwo_api.config.DevelopmentConfig
- DATABASE_URL=postgres://mpwo:mpwo@db:5432/mpwo
depends_on:
- db
links:
- db
2018-01-07 22:10:25 +01:00
client:
container_name: client
build:
context: ./
dockerfile: ./mpwo_client/Dockerfile-dev
args:
- NODE_ENV=development
- REACT_APP_USERS_SERVICE_URL=${REACT_APP_USERS_SERVICE_URL}
ports:
- 3007:3000
depends_on:
- api
links:
- api