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
|
2026-05-06 16:50:51 +05:00
|
|
|
- ${SSD}/homarr/appdata:/appdata
|
2026-04-22 17:43:37 +05:00
|
|
|
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-05-06 16:50:51 +05:00
|
|
|
- TZ=${TZ}
|
2026-04-22 18:59:53 +05:00
|
|
|
- WEBUI_PORT=8080
|
|
|
|
|
- TORRENTING_PORT=6881
|
|
|
|
|
volumes:
|
2026-05-06 16:50:51 +05:00
|
|
|
- ${SSD}/appdata:/config
|
2026-05-08 15:37:28 +05:00
|
|
|
- ${TORRENT_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
|
2026-05-01 19:35:56 +05:00
|
|
|
emby:
|
|
|
|
|
image: emby/embyserver
|
|
|
|
|
container_name: embyserver
|
2026-04-22 21:49:20 +05:00
|
|
|
environment:
|
2026-05-01 19:35:56 +05:00
|
|
|
- UID=1000 # The UID to run emby as (default: 2)
|
|
|
|
|
- GID=100 # The GID to run emby as (default 2)
|
|
|
|
|
- GIDLIST=100 # A comma-separated list of additional GIDs to run emby as (default: 2)
|
2026-05-01 12:28:30 +05:00
|
|
|
volumes:
|
2026-05-06 16:50:51 +05:00
|
|
|
- ${SSD}/emby/programdata:/config # Configuration directory
|
2026-05-08 15:37:28 +05:00
|
|
|
- ${MEDIA_HDD}/media:/mnt/media # Media directory
|
2026-05-01 19:35:56 +05:00
|
|
|
ports:
|
|
|
|
|
- 8096:8096 # HTTP port
|
|
|
|
|
- 8920:8920 # HTTPS port
|
|
|
|
|
restart: unless-stopped
|
2026-04-22 21:56:27 +05:00
|
|
|
jackett:
|
|
|
|
|
image: lscr.io/linuxserver/jackett:latest
|
|
|
|
|
container_name: jackett
|
|
|
|
|
environment:
|
|
|
|
|
- PUID=1000
|
|
|
|
|
- PGID=1000
|
2026-05-06 16:50:51 +05:00
|
|
|
- TZ=${TZ}
|
2026-04-22 21:56:27 +05:00
|
|
|
- AUTO_UPDATE=true #optional
|
|
|
|
|
volumes:
|
2026-05-06 16:50:51 +05:00
|
|
|
- ${SSD}/jackett/data:/config
|
2026-05-08 15:37:28 +05:00
|
|
|
- ${TORRENT_HDD}/downloads:/downloads
|
2026-04-22 21:56:27 +05:00
|
|
|
ports:
|
|
|
|
|
- 9117:9117
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
sonarr:
|
|
|
|
|
image: lscr.io/linuxserver/sonarr:latest
|
|
|
|
|
container_name: sonarr
|
|
|
|
|
environment:
|
|
|
|
|
- PUID=1000
|
|
|
|
|
- PGID=1000
|
2026-05-06 16:50:51 +05:00
|
|
|
- TZ=${TZ}
|
2026-04-22 21:56:27 +05:00
|
|
|
volumes:
|
2026-05-06 16:50:51 +05:00
|
|
|
- ${SSD}/sonarr/data:/config
|
2026-05-08 15:37:28 +05:00
|
|
|
- ${MEDIA_HDD}/media/tvseries:/media/tv #optional
|
|
|
|
|
- ${TORRENT_HDD}/downloads:/downloads #optional
|
2026-04-22 21:56:27 +05:00
|
|
|
ports:
|
|
|
|
|
- 8989:8989
|
2026-04-23 07:08:46 +05:00
|
|
|
restart: unless-stopped
|
2026-05-07 23:01:02 +05:00
|
|
|
seerr:
|
|
|
|
|
image: ghcr.io/seerr-team/seerr:latest
|
|
|
|
|
init: true
|
|
|
|
|
container_name: seerr
|
2026-04-25 23:17:27 +05:00
|
|
|
environment:
|
2026-05-07 23:01:02 +05:00
|
|
|
- LOG_LEVEL=debug
|
|
|
|
|
- TZ=${TZ}
|
|
|
|
|
- PORT=5055 #optional
|
2026-04-25 23:17:27 +05:00
|
|
|
ports:
|
|
|
|
|
- 5055:5055
|
2026-04-26 00:03:14 +05:00
|
|
|
volumes:
|
2026-05-07 23:01:02 +05:00
|
|
|
- ${SSD}/seerr/appdata/config:/app/config
|
|
|
|
|
healthcheck:
|
|
|
|
|
test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/settings/public || exit 1
|
|
|
|
|
start_period: 20s
|
|
|
|
|
timeout: 3s
|
|
|
|
|
interval: 15s
|
|
|
|
|
retries: 3
|
2026-04-26 00:03:14 +05:00
|
|
|
restart: unless-stopped
|
2026-04-26 18:44:08 +05:00
|
|
|
radarr:
|
|
|
|
|
image: lscr.io/linuxserver/radarr:latest
|
|
|
|
|
container_name: radarr
|
2026-04-26 01:44:57 +05:00
|
|
|
environment:
|
2026-04-26 18:44:08 +05:00
|
|
|
- PUID=1000
|
|
|
|
|
- PGID=1000
|
2026-05-06 16:50:51 +05:00
|
|
|
- TZ=${TZ}
|
2026-04-26 18:44:08 +05:00
|
|
|
volumes:
|
2026-05-06 16:50:51 +05:00
|
|
|
- ${SSD}/radarr/data:/config
|
2026-05-08 15:37:28 +05:00
|
|
|
- ${MEDIA_HDD}/media/movies:/movies #optional
|
|
|
|
|
- ${TORRENT_HDD}/downloads:/downloads #optional
|
2026-04-26 01:44:57 +05:00
|
|
|
ports:
|
2026-04-26 18:44:08 +05:00
|
|
|
- 7878:7878
|
2026-05-07 23:29:57 +05:00
|
|
|
restart: unless-stopped
|
|
|
|
|
prowlarr:
|
|
|
|
|
image: lscr.io/linuxserver/prowlarr:latest
|
|
|
|
|
container_name: prowlarr
|
|
|
|
|
environment:
|
|
|
|
|
- PUID=1000
|
|
|
|
|
- PGID=1000
|
|
|
|
|
- TZ=${TZ}
|
|
|
|
|
volumes:
|
|
|
|
|
- ${SSD}/prowlarr/data:/config
|
|
|
|
|
ports:
|
|
|
|
|
- 9696:9696
|
2026-04-26 18:44:08 +05:00
|
|
|
restart: unless-stopped
|