-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
84 lines (77 loc) · 1.61 KB
/
Copy pathdocker-compose.yml
File metadata and controls
84 lines (77 loc) · 1.61 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
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
83
84
services:
app:
build: .
container_name: lanmei
restart: always
depends_on:
- postgres
- openserp
ports:
- "8080:8080"
- "6060:6060"
networks:
- app-network
postgres:
image: pgvector/pgvector:pg16
container_name: postgres
restart: always
environment:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DB: ${POSTGRES_DB}
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data:rw
networks:
- app-network
pmhq:
image: linyuchen/pmhq:latest
container_name: pmhq
privileged: true
restart: always
environment:
- ENABLE_HEADLESS=false
networks:
- app-network
volumes:
- qq_volume:/root/.config/QQ
llbot:
image: linyuchen/llbot:latest
container_name: llonebot
restart: always
ports:
- "3080:3080"
extra_hosts:
- "host.docker.internal:host-gateway"
environment:
- PMHQ_HOST=pmhq
- WEBUI_PORT=3080
networks:
- app-network
volumes:
- qq_volume:/root/.config/QQ
- ./llbot_config:/app/llbot/data:rw
depends_on:
- pmhq
openserp:
image: karust/openserp:latest
container_name: openserp
restart: always
command: ["serve", "-a", "0.0.0.0", "-p", "7000"]
networks:
- app-network
ncm-api:
image: moefurina/ncm-api:latest
container_name: ncm-api
ports:
- "3000:3000"
restart: always
networks:
- app-network
volumes:
qq_volume:
postgres_data:
networks:
app-network:
driver: bridge