2021-05-05 01:08:58 +00:00
|
|
|
version: '3.7'
|
|
|
|
|
|
|
|
services:
|
2021-05-26 22:31:38 +00:00
|
|
|
frontend_bt_prod:
|
|
|
|
container_name: frontend_bt_prod
|
2021-05-05 01:08:58 +00:00
|
|
|
build:
|
2021-05-25 23:24:17 +00:00
|
|
|
context: ./frontend
|
2021-05-05 01:08:58 +00:00
|
|
|
dockerfile: Dockerfile.prod
|
|
|
|
ports:
|
2021-05-26 22:31:38 +00:00
|
|
|
- 8877:80
|
2021-06-25 01:02:44 +00:00
|
|
|
backend-prod:
|
|
|
|
container_name: backend_bt
|
|
|
|
build:
|
|
|
|
context: ./backend
|
|
|
|
dockerfile: Dockerfile.prod
|
|
|
|
ports:
|
|
|
|
- 5000:5000
|
|
|
|
environment:
|
|
|
|
DEBUG: "no"
|
|
|
|
PORT: 5000
|
|
|
|
HOST: "0.0.0.0"
|
|
|
|
|