22 lines
427 B
YAML
22 lines
427 B
YAML
|
version: '3.7'
|
||
|
|
||
|
services:
|
||
|
frontend-prod:
|
||
|
container_name: frontend-lettergen
|
||
|
build:
|
||
|
context: ./frontend
|
||
|
dockerfile: Dockerfile.prod
|
||
|
ports:
|
||
|
- 127.0.0.1:3000:80
|
||
|
backend-prod:
|
||
|
container_name: backend-lettergen
|
||
|
build:
|
||
|
context: ./backend
|
||
|
dockerfile: Dockerfile.prod
|
||
|
ports:
|
||
|
- 127.0.0.1:5000:5000
|
||
|
environment:
|
||
|
DEBUG: "no"
|
||
|
PORT: 5050
|
||
|
HOST: "0.0.0.0"
|