← Back to list
2026-04-30T13:30:23.818ZDocker

docker部署 Dpanel可视化面板

docker部署 Dpanel

安装教程:

  • 面板不能绑定 host 网络,默认版本中提供了域名绑定及Https证书功能,需要绑定 80 及 443 端口
docker run -it -d --name dpanel --restart=always \
 -p 80:80 -p 443:443 -p 8807:8080 \
 -v /var/run/docker.sock:/var/run/docker.sock \
 -v dpanel:/dpanel -e APP_NAME=dpanel registry.cn-shenzhen.aliyuncs.com/starbucket/dpanel:1.7.3
  • Lite版安装(不包含域名转发功能)
docker run -it -d --name dpanel --restart=always \
 -p 8807:8080 -e APP_NAME=dpanel \
 -v /var/run/docker.sock:/var/run/docker.sock \
 -v dpanel:/dpanel registry.cn-shenzhen.aliyuncs.com/starbucket/dpanel:1.7.3
  • 使用localhost:8807访问dpanel ,需要创建面板的账号和密码 《docker部署 Dpanel可视化面板》文章正文配图 — STARBUCKET BLOG

《docker部署 Dpanel可视化面板》文章正文配图(配图 2)— STARBUCKET BLOG

《docker部署 Dpanel可视化面板》文章正文配图(配图 3)— STARBUCKET BLOG

Comments & discussion

The first comment in each thread opens a topic. Signed-in readers can keep the conversation going under that topic.

No comments yet. Sign in to start a topic.

Start a new topic

Sign in to start a topic or join the discussion.