Spaces:
No application file
No application file
services: | |
backend: | |
image: back-prod | |
build: | |
context: ./app | |
dockerfile: Dockerfile | |
container_name: back-prod | |
web_app: | |
image: front-prod | |
build: | |
context: ./web_app | |
dockerfile: Dockerfile | |
depends_on: | |
- backend | |
ports: | |
- 8080:80 | |
container_name: front-prod | |