containly
A modern, colorful dashboard for visualizing and managing your Docker containers with ease.
10K+
Containly 是由 Cloudsmithy 打造的一款轻盈优雅的 Docker 容器仪表盘,提供直观的界面和实用功能,帮助你高效管理宿主机上的容器状态与端口访问。
✨ 支持浏览器访问 / 多状态分组 / 自动刷新 / 在线检测 / 暗黑模式 / 一键部署
docker run -d \
--name containly \
-p 5000:5000 \
-v /var/run/docker.sock:/var/run/docker.sock \
cloudsmithy/containly
访问:
http://localhost:5000
version: "3.8"
services:
containly:
image: cloudsmithy/containly
ports:
- "5000:5000"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
restart: unless-stopped
启动:
docker-compose up -d
git clone https://github.com/cloudsmithy/containly.git
cd containly
pip install -r requirements.txt
python run.py
containly/
├── app/ # 应用主目录
│ ├── __init__.py # 应用初始化
│ ├── docker_client.py # Docker客户端连接
│ ├── routes/ # 路由模块
│ │ ├── __init__.py
│ │ ├── views.py # 页面路由
│ │ └── api.py # API路由
│ └── services/ # 服务模块
│ ├── __init__.py
│ └── container_service.py # 容器服务
├── static/ # 静态文件目录
│ ├── css/
│ │ ├── style.css # 主样式
│ │ └── colors.css # 颜色样式
│ └── js/
│ └── main.js # JavaScript代码
├── templates/ # 模板目录
│ ├── index.html # 主页模板
│ ├── error.html # 错误页面
│ └── blacklist.html # 黑名单管理页面
├── run.py # 应用入口
├── requirements.txt # 依赖列表
├── Dockerfile # 容器构建定义
├── docker-compose.yml # Compose部署配置
└── README.md
Docker Hub: cloudsmithy/containly
MIT License - 自由使用、修改与部署,致谢请保留原始作者。
Made with ❤️ by cloudsmithy
Content type
Image
Digest
sha256:1324d9090…
Size
51.8 MB
Last updated
over 1 year ago
docker pull cloudsmithy/containly