app-store/apps/sabnzbd/docker-compose.yml
renovate[bot] fe85046cde
chore(deps): update lscr.io/linuxserver/sabnzbd docker tag to v4.0.2 (#670)
* chore(deps): update lscr.io/linuxserver/sabnzbd docker tag to v4.0.2

* Update app version

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
2023-06-10 13:34:14 +02:00

26 lines
747 B
YAML

version: '3'
services:
sabnzbd:
image: lscr.io/linuxserver/sabnzbd:4.0.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:
traefik.enable: ${APP_EXPOSED}
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
traefik.http.services.sabnzbd.loadbalancer.server.port: 8080