15 lines
256 B
Markdown
15 lines
256 B
Markdown
|
### 部署容器 ChatGPT
|
||
|
|
||
|
- PandoraNext
|
||
|
|
||
|
```bash
|
||
|
docker run -d --restart always \
|
||
|
--name PandoraNext \
|
||
|
--net=internal \
|
||
|
-p 8181:8181 \
|
||
|
-v /root/data/pandora/data:/data \
|
||
|
-v /root/data/pandora/sessions:/root/.cache/PandoraNext \
|
||
|
pengzhile/pandora-next
|
||
|
```
|
||
|
|