This repository contains Debian packaging files for cockpit-dockermanager.
Cockpit Docker Manager is a lightweight Cockpit plugin for managing Docker containers through a web interface.
Using the provided run script (recommended):
# Clone the packaging repository
git clone https://github.com/hatlabs/cockpit-dockermanager-debian.git
cd cockpit-dockermanager-debian
# Clone upstream source
./run setup:clone
# Build package in Docker (no local dependencies needed)
./run package:deb:dockerThe package will be created as cockpit-dockermanager_*.deb in the current directory.
Run ./run help to see all available commands:
./run setup:clone- Clone upstream cockpit-dockermanager repository./run setup:pull- Update upstream repository./run setup:checkout <version>- Checkout specific upstream version
./run package:deb:docker- Build using Docker (recommended, works on any platform)./run package:deb- Build locally (requires Debian/Ubuntu with build tools)./run package:docker:build- Build/rebuild the Docker tools image
./run release:version- Show current package version./run help- Show all available commands
To build a specific upstream version:
./run setup:checkout v1.0.7 # or any other tag (with 'v' prefix)
echo "1.0.7" > VERSION # Update package version (without 'v' prefix)
./run package:deb:dockerIf you prefer to build manually on Debian/Ubuntu:
# Install build dependencies
sudo apt-get install debhelper devscripts git
# Clone upstream source
git clone https://github.com/chrisjbawden/cockpit-dockermanager.git
# Build
dpkg-buildpackage -us -uc -bsudo dpkg -i cockpit-dockermanager_*.deb
sudo apt-get install -f # Install any missing dependenciesAfter installation, access Cockpit at https://your-host:9090 and find "Docker Manager" in the sidebar.
debian/control- Package metadata, dependencies, and debhelper compatibility leveldebian/rules- Build instructionsdebian/changelog- Version historydebian/copyright- License information (machine-readable format)debian/install- File installation mappingsdebian/source/format- Source package format (3.0 quilt)docker/- Docker build environment for cross-platform buildsrun- Build automation scriptVERSION- Package version tracking
cockpit(>= 200)docker.ioordocker-ce(recommended)
The packaging files are licensed under MIT License. See LICENSE file or debian/copyright for full details.
The upstream software is copyright © 2025 Chris Bawden and is also MIT licensed.
Matti Airas matti.airas@hatlabs.fi Hat Labs