A simple Web UI for Docker using xterm.js, Node.js and Socket.IO.
Features:
- Container management (create, start, stop, remove)
- Compose / Standalone container grouping with collapsible sections
- Interactive terminal (xterm.js)
- Real-time log viewer
- System overview dashboard
- Image search and pull
- Simple authentication
| Component | Version |
|---|---|
| Node.js | LTS |
| Express | 4.x |
| Socket.IO | 4.x |
| EJS | 5.x |
| Dockerode | 4.x |
| xterm.js | 4.x |
git clone https://github.com/qfdk/EasyDockerWeb.git
cd EasyDockerWeb
chmod +x build.sh
./build.sh# Build the image
docker build -t easy-docker-web .
# Run the container
docker run -d \
--name easy-docker-web \
-p 3000:3000 \
-v /var/run/docker.sock:/var/run/docker.sock \
easy-docker-webAccess the web interface at http://localhost:3000
Default credentials: admin/admin
You can customize the username and password by setting environment variables:
docker run -d \
--name easy-docker-web \
-p 3000:3000 \
-v /var/run/docker.sock:/var/run/docker.sock \
-e EDW_USERNAME='your_username' \
-e EDW_PASSWORD='your_password' \
easy-docker-web- Docker Engine with Remote API >= v1.24
- Linux, macOS, or Windows with Docker installed
git clone https://github.com/qfdk/EasyDockerWeb.git
cd EasyDockerWeb
pnpm install
pnpm start简单的 Docker 管理工具,基于 Express + Socket.IO 实现前后端通讯。
功能特点:
- 容器管理(创建、启动、停止、删除)
- Compose / 独立容器分组显示,支持折叠
- 交互式终端(xterm.js)
- 实时日志查看
- 系统概览面板
- 镜像搜索和拉取
- 简单的身份验证
git clone https://github.com/qfdk/EasyDockerWeb.git
cd EasyDockerWeb
chmod +x build.sh
./build.sh# 构建镜像
docker build -t easy-docker-web .
# 运行容器
docker run -d \
--name easy-docker-web \
-p 3000:3000 \
-v /var/run/docker.sock:/var/run/docker.sock \
easy-docker-web默认账号密码:admin/admin






