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

44 lines
1.7 KiB
YAML

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