app-store/apps/tautulli/docker-compose.yml

42 lines
1.7 KiB
YAML
Raw Permalink Normal View History

2022-07-28 17:46:12 +00:00
version: "2.1"
services:
tautulli:
container_name: tautulli
image: lscr.io/linuxserver/tautulli:2.14.3
2022-07-28 17:46:12 +00:00
environment:
- PUID=1000
- PGID=1000
- TZ=${TZ} # Can use any env variable. List in runtipi/templates/env-sample
volumes:
- ${APP_DATA_DIR}/data/config:/config
ports:
- ${APP_PORT}:8181
restart: unless-stopped
networks:
2022-11-11 19:33:58 +00:00
- tipi_main_network
labels:
feat: app configs local domains (#713) * feat(pairdrop): change config to support local domain * feat(paperless-ngx): change config to support local domain * feat(peppermint): change config to support local domain * feat(photoprism): change config to support local domain * feat(pihole): change config to support local domain * feat(plausible): change config to support local domain * feat(plex): change config to support local domain * feat(podfetch): change config to support local domain * feat(portainer): change config to support local domain * feat(privatebin): change config to support local domain * feat(prowlarr): change config to support local domain * feat(proxitok): change config to support local domain * feat(qbittorrent): change config to support local domain * feat(radarr): change config to support local domain * feat(readarr): change config to support local domain * feat(resilio-sync): change config to support local domain * feat(romm): change config to support local domain * feat(rss): change config to support local domain * feat(sabnzbd): change config to support local domain * feat(searxng): change config to support local domain * feat(send): change config to support local domain * feat(simplex-smp): change config to support local domain * feat(sonarr): change config to support local domain * feat(syncthing): change config to support local domain * feat(tasks-md): change config to support local domain * feat(tautulli): change config to support local domain * feat(teddit): change config to support local domain * feat(transmission): change config to support local domain * feat(tubearchivist): change config to support local domain * feat(umami): change config to support local domain * feat(uptime-kuma): change config to support local domain * feat(vaultwarden): change config to support local domain * feat(vikunja): change config to support local domain * feat(wg-easy): change config to support local domain * feat(wikijs): change config to support local domain * feat(wizarr): change config to support local domain * feat(your-spotify): change config to support local domain * chore: labels formatting issues
2023-06-18 16:02:29 +00:00
# Main
traefik.enable: true
traefik.http.middlewares.tautulli-web-redirect.redirectscheme.scheme: https
traefik.http.services.tautulli.loadbalancer.server.port: 8181
# Web
traefik.http.routers.tautulli-insecure.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.tautulli-insecure.entrypoints: web
traefik.http.routers.tautulli-insecure.service: tautulli
traefik.http.routers.tautulli-insecure.middlewares: tautulli-web-redirect
# Websecure
2022-11-11 19:33:58 +00:00
traefik.http.routers.tautulli.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.tautulli.entrypoints: websecure
traefik.http.routers.tautulli.service: tautulli
traefik.http.routers.tautulli.tls.certresolver: myresolver
feat: app configs local domains (#713) * feat(pairdrop): change config to support local domain * feat(paperless-ngx): change config to support local domain * feat(peppermint): change config to support local domain * feat(photoprism): change config to support local domain * feat(pihole): change config to support local domain * feat(plausible): change config to support local domain * feat(plex): change config to support local domain * feat(podfetch): change config to support local domain * feat(portainer): change config to support local domain * feat(privatebin): change config to support local domain * feat(prowlarr): change config to support local domain * feat(proxitok): change config to support local domain * feat(qbittorrent): change config to support local domain * feat(radarr): change config to support local domain * feat(readarr): change config to support local domain * feat(resilio-sync): change config to support local domain * feat(romm): change config to support local domain * feat(rss): change config to support local domain * feat(sabnzbd): change config to support local domain * feat(searxng): change config to support local domain * feat(send): change config to support local domain * feat(simplex-smp): change config to support local domain * feat(sonarr): change config to support local domain * feat(syncthing): change config to support local domain * feat(tasks-md): change config to support local domain * feat(tautulli): change config to support local domain * feat(teddit): change config to support local domain * feat(transmission): change config to support local domain * feat(tubearchivist): change config to support local domain * feat(umami): change config to support local domain * feat(uptime-kuma): change config to support local domain * feat(vaultwarden): change config to support local domain * feat(vikunja): change config to support local domain * feat(wg-easy): change config to support local domain * feat(wikijs): change config to support local domain * feat(wizarr): change config to support local domain * feat(your-spotify): change config to support local domain * chore: labels formatting issues
2023-06-18 16:02:29 +00:00
# Local domain
traefik.http.routers.tautulli-local-insecure.rule: Host(`tautulli.${LOCAL_DOMAIN}`)
traefik.http.routers.tautulli-local-insecure.entrypoints: web
traefik.http.routers.tautulli-local-insecure.service: tautulli
traefik.http.routers.tautulli-local-insecure.middlewares: tautulli-web-redirect
# Local domain secure
traefik.http.routers.tautulli-local.rule: Host(`tautulli.${LOCAL_DOMAIN}`)
traefik.http.routers.tautulli-local.entrypoints: websecure
traefik.http.routers.tautulli-local.service: tautulli
traefik.http.routers.tautulli-local.tls: true