-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (46 loc) · 1.04 KB
/
docker-compose.yml
File metadata and controls
49 lines (46 loc) · 1.04 KB
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
services:
redis:
image: redis:alpine
container_name: redis
restart: always
ports:
- "6379:6379"
networks:
- qqbot-net
environment:
TZ: Asia/Shanghai
napcat:
image: docker.1ms.run/mlikiowa/napcat-docker:latest
container_name: napcat
ports:
- "3001:3001"
- "6099:6099"
restart: unless-stopped
networks:
- qqbot-net
volumes:
- ./data:/app/Eridanus/data:rw
environment:
DATA_ROOT: "/app/Eridanus/data"
TZ: Asia/Shanghai
eridanus:
image: crpi-3gef5glpjhp2r3tx.cn-hangzhou.personal.cr.aliyuncs.com/sorahub/eridanus-docker:latest
container_name: eridanus
ports:
- "5007:5007"
restart: always
depends_on:
- redis
- napcat
networks:
- qqbot-net
volumes:
- ./data:/app/Eridanus/data:rw
environment:
DATA_DIR: "/app/Eridanus/data"
PICTURE_PATH: "/app/Eridanus/data/pictures"
CACHE_PATH: "/app/Eridanus/data/video/cache"
TZ: Asia/Shanghai
networks:
qqbot-net:
driver: bridge