Created
February 9, 2025 03:01
-
-
Save GokuWorks/d375fe4a75163aa47b086429f0b0d9d4 to your computer and use it in GitHub Desktop.
EplusTV docker compose file with traefik
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
services: | |
eplustv: | |
image: m0ngr31/eplustv:latest | |
container_name: eplustv | |
restart: unless-stopped | |
labels: | |
- traefik.enable=true | |
- traefik.http.routers.eplustv-https.tls=true | |
- traefik.http.routers.eplustv-https.tls.certresolver=cloudflare | |
- traefik.http.routers.eplustv-https.entrypoints=websecure | |
- traefik.http.routers.eplustv-https.rule=Host(`FQDN`) | |
- traefik.http.services.eplustv-https.loadbalancer.server.port=8000 | |
- traefik.http.services.eplustv-https.loadbalancer.server.scheme=http | |
networks: | |
- frontend | |
volumes: | |
- "/opt/eplustv:/app/config" | |
networks: | |
frontend: | |
external: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment