60 lines
1.5 KiB
YAML
60 lines
1.5 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
|
|
- ${SSD}/homarr/appdata:/appdata
|
|
environment:
|
|
- SECRET_ENCRYPTION_KEY=a5768cf048956f4da12fd0773b95f8960d571cfd2889c5c428ca9a4c8016bb36
|
|
ports:
|
|
- '7575:7575'
|
|
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
|
|
- ${TORRENT_HDD}/downloads:/downloads
|
|
ports:
|
|
- 9117:9117
|
|
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
|
|
dns:
|
|
- 9.9.9.9
|
|
- 1.1.1.1
|
|
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
|
|
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
|
|
restart: unless-stopped |