File size: 258 Bytes
9c16de4
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

# 拉取ChatGPT Web应用的Docker镜像
docker pull yidadaa/chatgpt-next-web

# 运行ChatGPT Web应用容器
docker run -d -p 3000:3000 \
   -e OPENAI_API_KEY="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" \
   yidadaa/chatgpt-next-web