chore: #2699 Update README.md

This commit is contained in:
Yifei Zhang 2023-08-24 10:54:28 +08:00 committed by GitHub
parent 7562ab3c1c
commit 8cac51abbe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -230,8 +230,8 @@ yarn dev
docker pull yidadaa/chatgpt-next-web docker pull yidadaa/chatgpt-next-web
docker run -d -p 3000:3000 \ docker run -d -p 3000:3000 \
-e OPENAI_API_KEY="sk-xxxx" \ -e OPENAI_API_KEY=sk-xxxx \
-e CODE="your-password" \ -e CODE=your-password \
yidadaa/chatgpt-next-web yidadaa/chatgpt-next-web
``` ```
@ -239,9 +239,9 @@ You can start service behind a proxy:
```shell ```shell
docker run -d -p 3000:3000 \ docker run -d -p 3000:3000 \
-e OPENAI_API_KEY="sk-xxxx" \ -e OPENAI_API_KEY=sk-xxxx \
-e CODE="your-password" \ -e CODE=your-password \
-e PROXY_URL="http://localhost:7890" \ -e PROXY_URL=http://localhost:7890 \
yidadaa/chatgpt-next-web yidadaa/chatgpt-next-web
``` ```