Files
IPTV-Restream/deployment/ghcr-docker-compose.yml
2024-12-25 15:37:16 +01:00

38 lines
808 B
YAML

version: "3.9"
services:
frontend:
image: ghcr.io/antebrl/iptv-restream/frontend:v2
networks:
- app-network
backend:
image: ghcr.io/antebrl/iptv-restream/backend:v2
volumes:
- streams_data:/streams
environment:
DEFAULT_CHANNEL_URL: https://mcdn.daserste.de/daserste/de/master.m3u8
STORAGE_PATH: /streams/
networks:
- app-network
# Nginx Reverse Proxy
nginx:
image: ghcr.io/antebrl/iptv-restream/nginx:v2
volumes:
- streams_data:/streams
ports:
- "80:80" # Configure exposed port, if 80 is already in use e.g. 8080:80
networks:
- app-network
volumes:
streams_data:
driver: local
driver_opts:
type: tmpfs
device: tmpfs
# Internal docker network
networks:
app-network:
driver: bridge