add whisparr and qb to stash

This commit is contained in:
Christoph Califice
2026-02-01 17:05:21 -03:00
parent 15bee7e1c3
commit 61e3193cb4

View File

@@ -49,4 +49,36 @@ services:
volumes: volumes:
- "/home/ccalifice/docker-data/gallery-dl/config:/config" - "/home/ccalifice/docker-data/gallery-dl/config:/config"
- "/mnt/system/gallery-dl:/gallery-dl" - "/mnt/system/gallery-dl:/gallery-dl"
restart: on-failure restart: on-failure
whisparr:
container_name: whisparr
image: ghcr.io/hotio/whisparr
ports:
- "6969:6969"
environment:
- PUID=1000
- PGID=1002
- UMASK=002
- TZ=America/Sao_Paulo
- WEBUI_PORTS=6969/tcp
volumes:
- /home/ccalifice/docker-data/stash/whisparr:/config
- /mnt/system/data:/data
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent-whisparr
environment:
- PUID=1000
- PGID=1002
- TZ=America/Sao_Paulo
- WEBUI_PORT=8182
volumes:
- /home/ccalifice/docker-data/stash/qbittorrent/config:/config
- /mnt/system/data/torrents:/data/torrents
ports:
- "8182:8182"
- "40848:40848"
- "40848:40848/udp"
restart: unless-stopped