Test the behaviour of the prod-containers locally #155

Merged
cami merged 1 commit from feature/locally-run-prod into main 2021-07-14 15:13:51 +00:00

18
test-prod-containers.yml Normal file
View file

@ -0,0 +1,18 @@
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"