返回提交历史
Modified
docker-compose.yml
+2
-4
XFEstudio/gpt4free
Fix docker-compose.yml
The image/dockerfile lines are incorrectly indented, also the read_only flag prevents the UI from starting due to not being able to write to the /tmp folder.
f710441a
代码差异
1 个文件
+2
-4
@@ -4,11 +4,9 @@ services:
4
4
gpt4:
5
5
build:
6
6
context: .
7
dockerfile: Dockerfile
8
image: gpt4free:latest
7
dockerfile: Dockerfile
8
image: gpt4free:latest
9
9
container_name: gpt4
10
10
ports:
11
11
- 8501:8501
12
12
restart: unless-stopped
13
read_only: true
14