Spaces:
Runtime error
Runtime error
| version: '3.8' | |
| services: | |
| backend: | |
| build: ./backend | |
| ports: | |
| - "8000:8000" | |
| environment: | |
| - ENVIRONMENT=production | |
| frontend: | |
| build: ./frontend | |
| ports: | |
| - "80:80" | |
| depends_on: | |
| - backend |
| version: '3.8' | |
| services: | |
| backend: | |
| build: ./backend | |
| ports: | |
| - "8000:8000" | |
| environment: | |
| - ENVIRONMENT=production | |
| frontend: | |
| build: ./frontend | |
| ports: | |
| - "80:80" | |
| depends_on: | |
| - backend |