todo/src/docker-compose.prod.yml

32 lines
472 B
YAML
Raw Normal View History

2021-11-14 18:56:17 +01:00
version: "3"
services:
db:
2021-11-14 19:19:01 +01:00
restart: always
2021-11-14 18:56:17 +01:00
build:
context: backend/db
2021-11-14 19:08:30 +01:00
env_file:
- .prod.env
2021-11-14 18:56:17 +01:00
server:
2021-11-14 19:19:01 +01:00
restart: always
2021-11-14 18:56:17 +01:00
build:
context: backend/server
ports:
2021-11-14 19:16:50 +01:00
- 12009:80
2021-11-14 19:08:30 +01:00
env_file:
- .prod.env
2021-11-14 18:56:17 +01:00
environment:
MONGODB__Host: db
MONGODB__Port: 27017
MONGODB__Database: todo
depends_on:
- db
client:
2021-11-14 19:19:01 +01:00
restart: always
2021-11-14 18:56:17 +01:00
build:
context: client
ports:
2021-11-14 19:16:50 +01:00
- 12008:3000