2026-04-22 17:54:51 +05:00
|
|
|
services:
|
2026-04-22 17:43:37 +05:00
|
|
|
homarr:
|
|
|
|
|
container_name: homarr
|
|
|
|
|
image: ghcr.io/homarr-labs/homarr:latest
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
volumes:
|
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock # Optional, only if you want docker integration
|
|
|
|
|
- ./homarr/appdata:/appdata
|
|
|
|
|
environment:
|
|
|
|
|
- SECRET_ENCRYPTION_KEY=a5768cf048956f4da12fd0773b95f8960d571cfd2889c5c428ca9a4c8016bb36
|
|
|
|
|
ports:
|
2026-04-22 18:59:53 +05:00
|
|
|
- '7575:7575'
|
|
|
|
|
qbittorrent:
|
|
|
|
|
image: lscr.io/linuxserver/qbittorrent:latest
|
|
|
|
|
container_name: qbittorrent
|
|
|
|
|
environment:
|
|
|
|
|
- PUID=1000
|
|
|
|
|
- PGID=1000
|
2026-04-22 21:57:01 +05:00
|
|
|
- TZ=Asia/Yekaterinburg
|
2026-04-22 18:59:53 +05:00
|
|
|
- WEBUI_PORT=8080
|
|
|
|
|
- TORRENTING_PORT=6881
|
|
|
|
|
volumes:
|
|
|
|
|
- /mnt/hdd/appdata:/config
|
2026-04-22 19:36:13 +05:00
|
|
|
- /mnt/hdd/downloads:/downloads #optional
|
2026-04-22 18:59:53 +05:00
|
|
|
ports:
|
|
|
|
|
- 8080:8080
|
|
|
|
|
- 6881:6881
|
|
|
|
|
- 6881:6881/udp
|
2026-04-22 21:49:20 +05:00
|
|
|
restart: unless-stopped
|
|
|
|
|
jellyfin:
|
|
|
|
|
image: jellyfin/jellyfin
|
|
|
|
|
container_name: jellyfin
|
|
|
|
|
ports:
|
|
|
|
|
- 8096:8096/tcp
|
|
|
|
|
- 7359:7359/udp
|
|
|
|
|
volumes:
|
|
|
|
|
- /mnt/hdd/jellyfin/config:/config
|
|
|
|
|
- /mnt/hdd/jellyfincache:/cache
|
|
|
|
|
- type: bind
|
|
|
|
|
source: /mnt/hdd/jellyfin/media
|
|
|
|
|
target: /media
|
|
|
|
|
- type: bind
|
|
|
|
|
source: /mnt/hdd/jellyfin/media2
|
|
|
|
|
target: /media2
|
|
|
|
|
read_only: true
|
|
|
|
|
# Optional - extra fonts to be used during transcoding with subtitle burn-in
|
|
|
|
|
- type: bind
|
|
|
|
|
source: /mnt/hdd/jellyfin/fonts
|
|
|
|
|
target: /usr/local/share/fonts/custom
|
|
|
|
|
read_only: true
|
|
|
|
|
restart: 'unless-stopped'
|
|
|
|
|
environment:
|
|
|
|
|
- JELLYFIN_PublishedServerUrl=http://trp.lan/
|
|
|
|
|
# Optional - may be necessary for docker healthcheck to pass if running in host network mode
|
|
|
|
|
extra_hosts:
|
2026-04-22 21:56:27 +05:00
|
|
|
- 'host.docker.internal:host-gateway'
|
|
|
|
|
jackett:
|
|
|
|
|
image: lscr.io/linuxserver/jackett:latest
|
|
|
|
|
container_name: jackett
|
|
|
|
|
environment:
|
|
|
|
|
- PUID=1000
|
|
|
|
|
- PGID=1000
|
|
|
|
|
- TZ=Asia/Yekaterinburg
|
|
|
|
|
- AUTO_UPDATE=true #optional
|
|
|
|
|
volumes:
|
|
|
|
|
- /mnt/hdd/jackett/data:/config
|
|
|
|
|
- /mnt/hdd/downloads:/downloads
|
|
|
|
|
ports:
|
|
|
|
|
- 9117:9117
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
sonarr:
|
|
|
|
|
image: lscr.io/linuxserver/sonarr:latest
|
|
|
|
|
container_name: sonarr
|
|
|
|
|
environment:
|
|
|
|
|
- PUID=1000
|
|
|
|
|
- PGID=1000
|
|
|
|
|
- TZ=Asia/Yekaterinburg
|
|
|
|
|
volumes:
|
|
|
|
|
- /mnt/hdd/sonarr/data:/config
|
|
|
|
|
- /mnt/hdd/jellyfin/media/tvseries:/tv #optional
|
|
|
|
|
- /mnt/hdd/downloads:/downloads #optional
|
|
|
|
|
ports:
|
|
|
|
|
- 8989:8989
|
2026-04-23 07:08:46 +05:00
|
|
|
restart: unless-stopped
|
|
|
|
|
jellyseerr:
|
|
|
|
|
image: fallenbagel/jellyseerr:latest
|
|
|
|
|
container_name: jellyseerr
|
|
|
|
|
environment:
|
|
|
|
|
- LOG_LEVEL=debug
|
|
|
|
|
- TZ=Asia/Yekaterinburg
|
|
|
|
|
ports:
|
|
|
|
|
- 5055:5055
|
|
|
|
|
volumes:
|
|
|
|
|
- /mnt/hdd/config:/app/config
|
|
|
|
|
restart: unless-stopped
|