XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 1
返回提交历史

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
tr7zw <tr7zw@live.de>
提交于

代码差异

1 个文件 +2 -4
Modified docker-compose.yml +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