refactor: rewrite jellyseerr_dev to match template conventions

- Rename docker-compose.yml to compose.yaml
- Add defaults, restart policy, and proxy network
- Remove container_name (unnecessary), TZ (not required)
- Fix VOL_PATH to use base /data pattern
- Rewrite README with new section order
This commit is contained in:
2026-07-02 21:27:50 -07:00
parent a2351a266d
commit cd70772880
4 changed files with 87 additions and 19 deletions
+18
View File
@@ -0,0 +1,18 @@
services:
jellyseerr:
image: ${JELLYSEERR_IMAGE:-ghcr.io/hotio/jellyseerr:release}
restart: ${JELLYSEERR_RESTART:-unless-stopped}
volumes:
- ${VOL_PATH:-/data}/jellyseerr/config:/config
environment:
- PUID=1000
- PGID=1000
- UMASK=002
ports:
- "${JELLYSEERR_PORT:-5055}:5055"
networks:
- proxy
networks:
proxy:
external: true