zero3/xiaoya/docker-compose-jellyfin.yml

59 lines
1.1 KiB
YAML
Raw Permalink Normal View History

2024-06-05 16:41:54 +08:00
services:
alist:
image: ghcr.io/monlor/xiaoya-alist:latest
volumes:
- xiaoya:/data
ports:
- "5678:5678"
- "2345:2345"
- "2346:2346"
env_file:
- env
restart: unless-stopped
networks:
- default
metadata:
image: ghcr.io/monlor/xiaoya-metadata:latest
environment:
- EMBY_ENABLED=false
- JELLYFIN_ENABLED=true
env_file:
- env
volumes:
- xiaoya:/etc/xiaoya
2024-06-08 16:33:09 +08:00
- jf_media:/media/jf_xiaoya
2024-06-05 16:41:54 +08:00
- jf_config:/media/jf_config
- jf_cache:/media/jf_config/cache
- meta:/media/temp
depends_on:
- alist
restart: unless-stopped
networks:
- default
jellyfin:
image: ghcr.io/monlor/xiaoya-jellyfin:latest
env_file:
- env
privileged: true
depends_on:
- metadata
- alist
volumes:
2024-06-08 16:33:09 +08:00
- jf_media:/media
2024-06-05 16:41:54 +08:00
- jf_config:/config
- jf_cache:/cache
ports:
- 8096:8096
restart: unless-stopped
networks:
- default
networks:
default:
volumes:
xiaoya:
2024-06-08 16:33:09 +08:00
jf_media:
2024-06-05 16:41:54 +08:00
jf_config:
jf_cache:
meta: