feat: jellyseerr service
This commit is contained in:
@@ -21,6 +21,7 @@ termix/termix-data/*
|
|||||||
|
|
||||||
# Steaming services files
|
# Steaming services files
|
||||||
streaming/jellyfin/*
|
streaming/jellyfin/*
|
||||||
|
streaming/jellyseerr/*
|
||||||
|
|
||||||
# Homepage
|
# Homepage
|
||||||
homepage/files/assets/images/team/*
|
homepage/files/assets/images/team/*
|
||||||
|
|||||||
+27
-2
@@ -12,11 +12,36 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- ./jellyfin/config:/config
|
- ./jellyfin/config:/config
|
||||||
- type: bind
|
- type: bind
|
||||||
source: .jellyfin/media
|
source: ./jellyfin/media
|
||||||
target: /media
|
target: /media
|
||||||
networks:
|
networks:
|
||||||
- traefik-proxy
|
- traefik-proxy
|
||||||
|
- streaming
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
jellyseerr:
|
||||||
|
image: ghcr.io/fallenbagel/jellyseerr:latest
|
||||||
|
init: true
|
||||||
|
container_name: jellyseerr
|
||||||
|
environment:
|
||||||
|
- LOG_LEVEL=debug
|
||||||
|
- TZ=${TZ:-Europe/Moscow}
|
||||||
|
- PORT=5055
|
||||||
|
ports:
|
||||||
|
- 5055:5055
|
||||||
|
volumes:
|
||||||
|
- ./jellyseerr:/app/config
|
||||||
|
healthcheck:
|
||||||
|
test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1
|
||||||
|
start_period: 20s
|
||||||
|
timeout: 3s
|
||||||
|
interval: 15s
|
||||||
|
retries: 3
|
||||||
|
restart: unless-stopped
|
||||||
|
networks:
|
||||||
|
- traefik-proxy
|
||||||
|
- streaming
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
traefik-proxy:
|
traefik-proxy:
|
||||||
external: true
|
external: true
|
||||||
|
streaming:
|
||||||
Reference in New Issue
Block a user