19 lines
372 B
YAML
19 lines
372 B
YAML
|
version: '3.7'
|
||
|
services:
|
||
|
frontend-prod:
|
||
|
containername: frontend-testing
|
||
|
build:
|
||
|
context: ./frontend
|
||
|
dockerfile: Dockerfile.prod
|
||
|
ports:
|
||
|
- 3000:80
|
||
|
backend-prod:
|
||
|
container_name: backend-testing
|
||
|
build:
|
||
|
context: ./backend
|
||
|
dockerfile: Dockerfile.prod
|
||
|
environment:
|
||
|
DEBUG: "no"
|
||
|
PORT: 5000
|
||
|
HOST: "0.0.0.0"
|