zero3/xiaoya/docker-compose-all.yml

82 lines
1.5 KiB
YAML
Raw 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=true
- JELLYFIN_ENABLED=true
env_file:
- env
volumes:
- xiaoya:/etc/xiaoya
- media:/media/xiaoya
- config:/media/config
- cache:/media/config/cache
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
emby:
image: ghcr.io/monlor/xiaoya-embyserver:latest
env_file:
- env
depends_on:
- metadata
- alist
volumes:
- media:/media
- config:/config
- cache:/cache
ports:
- "6908:6908"
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:
media:
config:
cache:
2024-06-08 16:33:09 +08:00
jf_media:
2024-06-05 16:41:54 +08:00
jf_config:
jf_cache:
meta: