app-store/apps/jackett/docker-compose.yml
Nicolas Meienberger 01c6836796
local domain configs H-L (#678)
* feat(halo): change config to support local domain

* feat(hammond): change config to support local domain

* feat(haven): change config to support local domain

* feat(hedgedoc): change config to support local domain

* feat(hello-world): change config to support local domain

* feat(homarr): change config to support local domain

* feat(homebox): change config to support local domain

* feat(immich): change config to support local domain

* feat(invidious): change config to support local domain

* feat(it-tools): change config to support local domain

* feat(jackett): change config to support local domain

* feat(jellyseerr): change config to support local domain

* feat(joplin): change config to support local domain

* feat(kandboard): change config to support local domain

* feat(kapowarr): change config to support local domain

* feat(kavita): change config to support local domain

* feat(libreddit): change config to support local domain

* feat(librephotos): change config to support local domain

* feat(libretranslate): change config to support local domain

* feat(lidarr): change config to support local domain

* feat(lidarr-deemix): change config to support local domain

* feat(linkstack): change config to support local domain

* feat(lodestone-core): change config to support local domain
2023-06-10 17:29:03 +02:00

46 lines
1.8 KiB
YAML

version: "3.7"
services:
jackett:
image: lscr.io/linuxserver/jackett:0.21.186
container_name: jackett
environment:
- PUID=1000
- PGID=1000
- TZ=${TZ}
- AUTO_UPDATE=true
dns:
- ${DNS_IP}
volumes:
- ${APP_DATA_DIR}/data:/config
- ${ROOT_FOLDER_HOST}/media/torrents:/media/torrents
ports:
- ${APP_PORT}:9117
restart: unless-stopped
networks:
- tipi_main_network
labels:
# Main
traefik.enable: true
traefik.http.middlewares.jackett-web-redirect.redirectscheme.scheme: https
traefik.http.services.jackett.loadbalancer.server.port: 9117
# Web
traefik.http.routers.jackett-insecure.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.jackett-insecure.entrypoints: web
traefik.http.routers.jackett-insecure.service: jackett
traefik.http.routers.jackett-insecure.middlewares: jackett-web-redirect
# Websecure
traefik.http.routers.jackett.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.jackett.entrypoints: websecure
traefik.http.routers.jackett.service: jackett
traefik.http.routers.jackett.tls.certresolver: myresolver
# Local domain
traefik.http.routers.jackett-local-insecure.rule: Host(`jackett.${LOCAL_DOMAIN}`)
traefik.http.routers.jackett-local-insecure.entrypoints: web
traefik.http.routers.jackett-local-insecure.service: jackett
traefik.http.routers.jackett-local-insecure.middlewares: jackett-web-redirect
# Local domain secure
traefik.http.routers.jackett-local.rule: Host(`jackett.${LOCAL_DOMAIN}`)
traefik.http.routers.jackett-local.entrypoints: websecure
traefik.http.routers.jackett-local.service: jackett
traefik.http.routers.jackett-local.tls: true