chatgpt搭建

chatgpt两步搭建大法

部署docker环境

  • 下载docker
curl -fsSL https://get.docker.com -o get-docker.sh
  • 安装docker
sh get-docker.sh
  • 运行docker服务
systemctl start docker
  • 查看运行状态
systemctl status docker
  • 设置docker开机自启
systemctl enable docker

部署chatgpt

docker run --name chatgpt-next-web -d -p 8080:3000 --restart=always \
-e OPENAI_API_KEY=换成你的中转key \
-e CODE=123456 \
-e HIDE_USER_API_KEY=1 \
-e BASE_URL=https://api.openai-hk.com   yidadaa/chatgpt-next-web

完结

你可能感兴趣的:(chatgpt)