forked from IceBearAI/LLM-And-More
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
48 lines (48 loc) · 944 Bytes
/
docker-compose.yaml
File metadata and controls
48 lines (48 loc) · 944 Bytes
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
version: "3"
services:
aigc-server:
image: dudulu/aigc-server:v0.0.0-beta05
restart: always
# build:
# context: .
# dockerfile: Dockerfile
ports:
- "8080:8080"
env_file:
- .env
command:
- aigc-server
- start
volumes:
- ./storage:/usr/local/aigc-server/storage
network_mode: host
fschat-controller:
image: dudulu/fschat:v0.2.36
restart: always
ports:
- "21001:21001"
command:
- python3
- -m
- fastchat.serve.controller
- --host
- '0.0.0.0'
- --port
- '21001'
network_mode: host
fschat-api:
image: dudulu/fschat:v0.2.36
restart: always
ports:
- "8000:8000"
command:
- python3
- -m
- fastchat.serve.openai_api_server
- --host
- '0.0.0.0'
- --port
- '8000'
- --controller-address
- http://localhost:21001
network_mode: host