feat: Adds jellyseerr service.

This commit is contained in:
2025-11-28 23:11:14 -05:00
parent 5db2fb0e2b
commit aebe05071d

View File

@@ -50,6 +50,7 @@ services:
- 6789:6789 # nzbget - 6789:6789 # nzbget
- 9696:9696 # prowlarr - 9696:9696 # prowlarr
- 8191:8191 # flaresolver - 8191:8191 # flaresolver
- 5055:5055 # jellyseerr
volumes: volumes:
- ./gluetun:/gluetun - ./gluetun:/gluetun
# Make a '.env' file in the same directory. # Make a '.env' file in the same directory.
@@ -229,6 +230,22 @@ services:
# - 8191:8191 # - 8191:8191
restart: unless-stopped restart: unless-stopped
jellyseerr:
container_name: jellyseerr
image: fallenbagel/jellyseerr:latest
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
volumes:
- ./jellyseerr:/app/config
ports:
- 5055:5055
networks:
servarrnetwork:
ipv4_address: 172.39.0.9
restart: unless-stopped
# Newer additions to this stack feel. Remove the '#' to add the service. # Newer additions to this stack feel. Remove the '#' to add the service.
# #
# ytdl-sub: # ytdl-sub:
@@ -247,18 +264,3 @@ services:
# ipv4_address: 172.39.0.8 # ipv4_address: 172.39.0.8
# restart: unless-stopped # restart: unless-stopped
# #
jellyseerr:
container_name: jellyseerr
image: fallenbagel/jellyseerr:latest
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
volumes:
- ./jellyseerr:/app/config
ports:
- 5055:5055
networks:
servarrnetwork:
ipv4_address: 172.39.0.9
restart: unless-stopped