|
|
@ -185,10 +185,10 @@ pnpm dev
|
|
|
|
docker build -t chatgpt-web .
|
|
|
|
docker build -t chatgpt-web .
|
|
|
|
|
|
|
|
|
|
|
|
# foreground operation
|
|
|
|
# foreground operation
|
|
|
|
docker run --name chatgpt-web --rm -it -p 3002:3002 --env OPENAI_API_KEY=your_api_key chatgpt-web
|
|
|
|
docker run --name chatgpt-web --rm -it -p 127.0.0.1:3002:3002 --env OPENAI_API_KEY=your_api_key chatgpt-web
|
|
|
|
|
|
|
|
|
|
|
|
# background operation
|
|
|
|
# background operation
|
|
|
|
docker run --name chatgpt-web -d -p 3002:3002 --env OPENAI_API_KEY=your_api_key chatgpt-web
|
|
|
|
docker run --name chatgpt-web -d -p 127.0.0.1:3002:3002 --env OPENAI_API_KEY=your_api_key chatgpt-web
|
|
|
|
|
|
|
|
|
|
|
|
# running address
|
|
|
|
# running address
|
|
|
|
http://localhost:3002/
|
|
|
|
http://localhost:3002/
|
|
|
@ -205,7 +205,7 @@ services:
|
|
|
|
app:
|
|
|
|
app:
|
|
|
|
image: chenzhaoyu94/chatgpt-web # always use latest, pull the tag image again when updating
|
|
|
|
image: chenzhaoyu94/chatgpt-web # always use latest, pull the tag image again when updating
|
|
|
|
ports:
|
|
|
|
ports:
|
|
|
|
- 3002:3002
|
|
|
|
- 127.0.0.1:3002:3002
|
|
|
|
environment:
|
|
|
|
environment:
|
|
|
|
# one of two
|
|
|
|
# one of two
|
|
|
|
OPENAI_API_KEY: xxxxxx
|
|
|
|
OPENAI_API_KEY: xxxxxx
|
|
|
|