Flask now runs on Gunicorn, and runs through NGinx

This commit is contained in:
2025-01-22 00:55:18 +00:00
parent 043effb6db
commit ca33ca6b70
6 changed files with 13 additions and 13 deletions

View File

@@ -7,13 +7,13 @@ services:
- "1935:1935" # RTMP
- "8080:8080"
depends_on:
- flask
- app
networks:
- app_network
flask:
app:
build:
context: ./web_server
context: ./app
ports:
- "5000:5000"
networks:
@@ -21,3 +21,4 @@ services:
networks:
app_network:
driver: bridge