Files
gander/docker-compose.yml
Chris-1010 2887409ae6 Major: Restructure of Project
Major: Introduction of Frontend (React)
2025-01-21 17:19:23 +00:00

24 lines
331 B
YAML

version: '3.9'
services:
nginx:
build:
context: ./nginx
ports:
- "1935:1935" # RTMP
- "8080:8080"
depends_on:
- flask
networks:
- app_network
flask:
build:
context: ./web_server
ports:
- "5000:5000"
networks:
- app_network
networks:
app_network: