104 lines
2.8 KiB
YAML
104 lines
2.8 KiB
YAML
services:
|
|
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
|
|
- ${SSD}/homarr/appdata:/appdata
|
|
environment:
|
|
- SECRET_ENCRYPTION_KEY=a5768cf048956f4da12fd0773b95f8960d571cfd2889c5c428ca9a4c8016bb36
|
|
ports:
|
|
- '7575:7575'
|
|
qbittorrent:
|
|
image: lscr.io/linuxserver/qbittorrent:latest
|
|
container_name: qbittorrent
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=${TZ}
|
|
- WEBUI_PORT=8080
|
|
- TORRENTING_PORT=6881
|
|
volumes:
|
|
- ${SSD}/appdata:/config
|
|
- ${HDD}/downloads:/downloads #optional
|
|
ports:
|
|
- 8080:8080
|
|
- 6881:6881
|
|
- 6881:6881/udp
|
|
restart: unless-stopped
|
|
emby:
|
|
image: emby/embyserver
|
|
container_name: embyserver
|
|
environment:
|
|
- 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)
|
|
volumes:
|
|
- ${SSD}/emby/programdata:/config # Configuration directory
|
|
- ${HDD}/media:/mnt/media # Media directory
|
|
ports:
|
|
- 8096:8096 # HTTP port
|
|
- 8920:8920 # HTTPS port
|
|
restart: unless-stopped
|
|
jackett:
|
|
image: lscr.io/linuxserver/jackett:latest
|
|
container_name: jackett
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=${TZ}
|
|
- AUTO_UPDATE=true #optional
|
|
volumes:
|
|
- ${SSD}/jackett/data:/config
|
|
- ${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=${TZ}
|
|
volumes:
|
|
- ${SSD}/sonarr/data:/config
|
|
- ${HDD}/media/tvseries:/media/tv #optional
|
|
- ${HDD}/downloads:/downloads #optional
|
|
ports:
|
|
- 8989:8989
|
|
restart: unless-stopped
|
|
seerr:
|
|
image: ghcr.io/seerr-team/seerr:latest
|
|
init: true
|
|
container_name: seerr
|
|
environment:
|
|
- LOG_LEVEL=debug
|
|
- TZ=${TZ}
|
|
- PORT=5055 #optional
|
|
ports:
|
|
- 5055:5055
|
|
volumes:
|
|
- ${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
|
|
restart: unless-stopped
|
|
radarr:
|
|
image: lscr.io/linuxserver/radarr:latest
|
|
container_name: radarr
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=${TZ}
|
|
volumes:
|
|
- ${SSD}/radarr/data:/config
|
|
- ${HDD}/media/movies:/movies #optional
|
|
- ${HDD}/downloads:/downloads #optional
|
|
ports:
|
|
- 7878:7878
|
|
restart: unless-stopped |