diff --git a/test-prod-containers.yml b/test-prod-containers.yml new file mode 100644 index 0000000..b4708fa --- /dev/null +++ b/test-prod-containers.yml @@ -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"