Added Docker files, and removed RTMP server additions, added NGinx files (didn't added source NGinx files, docker will add them)

This commit is contained in:
2025-01-20 00:14:13 +00:00
parent b8624c94a1
commit 76991f0b39
8 changed files with 80 additions and 162 deletions

22
docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
version: '3.9'
services:
nginx:
build:
context: ./nginx
ports:
- "1935:1935" # RTMP
depends_on:
- flask
networks:
- app_network
flask:
build:
context: ./core
ports:
- "5000:5000"
networks:
- app_network
networks:
app_network: