mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
- 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
19 lines
395 B
YAML
19 lines
395 B
YAML
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
|