Docker安装DPanel – Docker可视化面板

镜像

dpanel/dpanel:latest

registry.cn-hangzhou.aliyuncs.com/dpanel/dpanel:latest

dpanel/dpanel:lite(此版本不需要映射80和443端口,需要自行转发域名绑定容器)

安装命令

docker run -it -d \
  --name dpanel --restart=always \
  -p <WEB_HTTP_PORT>:80 \
  -p <WEB_HTTPS_PORT>:443 \
  -p <PANEL_PORT>:8080 \
  -v /var/run/docker.sock:/var/run/docker.sock \
  -v <磁盘路径>/dpanel:/dpanel \
  -e APP_NAME=dpanel -e INSTALL_USERNAME=admin -e INSTALL_PASSWORD=admin \
  dpanel/dpanel:latest 

如何使用

打开浏览器访问:http(s)://{ip}:port

默认账号和密码:admin

 


文档仓库 » Docker安装DPanel – Docker可视化面板