Moved frontend out of webserver into it's own container

This commit is contained in:
2025-01-23 11:28:53 +00:00
parent e826311c34
commit c0674c58b4
50 changed files with 41 additions and 12 deletions

View File

@@ -15,14 +15,22 @@ services:
build:
context: ./web_server
ports:
- "5000:5000"
- "5000"
networks:
- app_network
env_file:
- .env
environment:
- FLASK_APP=backend.blueprints.__init__
- FLASK_APP=blueprints.__init__
- FLASK_DEBUG=True
frontend:
build:
context: ./frontend
ports:
- "5173:5173"
networks:
- app_network
networks:
app_network: