Bachelorthesis_Code/docker-compose.prod.yml

23 lines
402 B
YAML
Raw Normal View History

2021-05-05 01:08:58 +00:00
version: '3.7'
services:
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:
- 8877:80
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"