refactor: change directory mappings, readability

This commit is contained in:
2025-11-27 20:12:17 +01:00
parent b381c7b012
commit 6c72acc59e
+8 -12
View File
@@ -5,18 +5,16 @@ services:
environment: environment:
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
- TZ=${TZ} - TZ=${TZ:-Europe/Moscow}
ports: ports:
- 8096:8096/tcp - "8096:8096/tcp"
- 7359:7359/udp - "7359:7359/udp"
volumes: volumes:
- ./jellyfin/config:/config - ./jellyfin/config:/config
- type: bind - ./data/media:/media
source: ./jellyfin/media - ./data/downloads:/downloads
target: /media
networks: networks:
- traefik-proxy - traefik-proxy
- streaming
restart: unless-stopped restart: unless-stopped
jellyseerr: jellyseerr:
image: ghcr.io/fallenbagel/jellyseerr:latest image: ghcr.io/fallenbagel/jellyseerr:latest
@@ -27,11 +25,11 @@ services:
- TZ=${TZ:-Europe/Moscow} - TZ=${TZ:-Europe/Moscow}
- PORT=5055 - PORT=5055
ports: ports:
- 5055:5055 - "5055:5055"
volumes: volumes:
- ./jellyseerr:/app/config - ./jellyseerr:/app/config
healthcheck: healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1 test: ["CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1"]
start_period: 20s start_period: 20s
timeout: 3s timeout: 3s
interval: 15s interval: 15s
@@ -39,9 +37,7 @@ services:
restart: unless-stopped restart: unless-stopped
networks: networks:
- traefik-proxy - traefik-proxy
- streaming
networks: networks:
traefik-proxy: traefik-proxy:
external: true external: true
streaming: