Обновить docker-compose.yml

This commit is contained in:
2026-04-22 21:56:27 +05:00
parent ab9725452a
commit d80eab6d57
+29 -1
View File
@@ -55,4 +55,32 @@ services:
- JELLYFIN_PublishedServerUrl=http://trp.lan/ - JELLYFIN_PublishedServerUrl=http://trp.lan/
# Optional - may be necessary for docker healthcheck to pass if running in host network mode # Optional - may be necessary for docker healthcheck to pass if running in host network mode
extra_hosts: extra_hosts:
- 'host.docker.internal:host-gateway' - '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
restart: unless-stopped