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.
This commit is contained in:
tr7zw
2023-04-30 20:57:31 +00:00
committed by GitHub
parent 08abfe0ebb
commit f710441a6d

View File

@@ -4,11 +4,9 @@ services:
gpt4: gpt4:
build: build:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
image: gpt4free:latest image: gpt4free:latest
container_name: gpt4 container_name: gpt4
ports: ports:
- 8501:8501 - 8501:8501
restart: unless-stopped restart: unless-stopped
read_only: true