forked from monlor/docker-xiaoya
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-all.yml
82 lines (79 loc) · 1.48 KB
/
docker-compose-all.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
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
- jf_media:/media/jf_xiaoya
- 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:
- jf_media:/media
- jf_config:/config
- jf_cache:/cache
ports:
- 8096:8096
restart: unless-stopped
networks:
- default
networks:
default:
volumes:
xiaoya:
media:
config:
cache:
jf_media:
jf_config:
jf_cache:
meta: