mirror of
https://github.com/Viren070/docker-compose-template.git
synced 2025-12-01 23:17:00 +01:00
21 lines
660 B
YAML
21 lines
660 B
YAML
services:
|
|
stremio-jackett:
|
|
image: belmeg/stremio-addon-jackett
|
|
container_name: stremio-jackett
|
|
restart: unless-stopped
|
|
expose:
|
|
- 3000
|
|
environment:
|
|
- PUID=${PUID}
|
|
- PGID=${PGID}
|
|
- TZ=${TZ:-UTC} # Add timezone support
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.stremiojackett.rule=Host(`${STREMIO_JACKETT_HOSTNAME?}`)"
|
|
- "traefik.http.routers.stremiojackett.entrypoints=websecure"
|
|
- "traefik.http.routers.stremiojackett.tls.certresolver=letsencrypt"
|
|
- "traefik.http.routers.stremiojackett.middlewares=authelia@docker"
|
|
profiles:
|
|
- stremio-jackett
|
|
- all
|