Bachelorthesis_Code/test-prod-containers.yml
cami 816689acdf
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
Test the behaviour of the prod-containers locally
2021-07-14 17:13:03 +02:00

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"