From 67a1e3dccc5eb3a221c3f8246ec51f02b8af5720 Mon Sep 17 00:00:00 2001 From: Shihaam Abdul Rahman Date: Fri, 6 Jun 2025 18:31:05 +0500 Subject: [PATCH] add go2rtc and simpler nginx --- compose.yml | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/compose.yml b/compose.yml index 60baa29..c6099b8 100644 --- a/compose.yml +++ b/compose.yml @@ -1,15 +1,19 @@ services: - nginx: - image: git.shihaam.dev/dockerfiles/nginx-full:latest - container_name: nginx - hostname: nginx + tvm3u: + image: nginx + container_name: tvm3u + hostname: tvm3u ports: - - 80:80 - - 443:443 + - 8080:80 volumes: - - /etc/ssl:/etc/ssl:ro - ./nginx/redirects:/etc/nginx/redirects - - ./nginx/sites-available:/etc/nginx/sites-available - - ./nginx/sites-enabled:/etc/nginx/sites-enabled + - ./nginx/nginx.conf:/etc/nginx/conf.d/default.conf - ./html:/var/www/html restart: unless-stopped + go2rtc: + image: alexxit/go2rtc + ports: + - 1984:1984 + volumes: + - ./go2rtc:/config" + restart: unless-stopped