# Docker-Webmin **Repository Path**: FriBox-OpenSource/Docker-Webmin ## Basic Information - **Project Name**: Docker-Webmin - **Description**: Dockerfile for Webmin (Webmin 的 Dockerfile 编译脚本) - **Primary Language**: Shell - **License**: GPL-3.0 - **Default Branch**: main - **Homepage**: http://fribox.cn/ - **GVP Project**: No ## Statistics - **Stars**: 3 - **Forks**: 0 - **Created**: 2022-06-13 - **Last Updated**: 2022-11-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: Docker, Webmin, shell, Dockerfile, FriBox ## README # Docker-Webmin dockerfile for webmin (Webmin 的 Docker 镜像编译文件) Download Webmin file(Webmin 官方包下载地址):
  [https://prdownloads.sourceforge.net/webadmin/webmin_1.994_all.deb](https://prdownloads.sourceforge.net/webadmin/webmin_1.994_all.deb)
Web Page Url(Webmin 官方包下载页面):
  [https://www.webmin.com/download.html](https://www.webmin.com/download.html)
## Building the image (编译镜像) ``` git clone https://github.com/FriBox/Docker-Webmin.git cd Docker-Webmin docker build -t fribox/webmin . ``` ## Export the image (导出镜像保存) ``` docker save fribox/webmin -o FriBox.Docker-Webmin.tar ``` ## Import the image (手动导入镜像) ``` docker load -i FriBox.Docker-Webmin.tar ``` ## Running the container (启动容器) ``` docker run --name Webmin-Service -d --restart=always --env ROOT_PASSWORD="PassWord" --publish 10000:10000/tcp fribox/webmin ``` ## Log into webmin and manage your server (登录页面Webmin管理页面) ``` https://hostname.or.ip:10000 (root:pass) 用户名和密码 ```