To see full documentation go: https://dockman.radn.dev/docs/category/install
Try Dockman with this docker run command
Warning
This quick-start command will delete all dockman data when the container stops. Use only for testing.
For a more persistent setup, see the compose section below.
docker run --rm -p 8866:8866 -v /var/run/docker.sock:/var/run/docker.sock ghcr.io/ra341/dockman:latest
Access at http://localhost:8866
Important
The stacks directory path must be absolute and identical in all three locations:
- 1️⃣ Environment variable:
DOCKMAN_COMPOSE_ROOT=/path/to/stacks
- 2️⃣ The host side of the volume
/path/to/stacks
- 3️⃣ The container side of the volume
/path/to/stacks
This path consistency is essential for Dockman to locate and manage your compose files properly.
services:
dockman:
container_name: dockman
image: ghcr.io/ra341/dockman:latest
environment:
# 1️⃣
- DOCKMAN_COMPOSE_ROOT=/path/to/stacks
volumes:
# 2️⃣ 3️⃣
- /path/to/stacks:/path/to/stacks
- /path/to/dockman/config:/config
- /var/run/docker.sock:/var/run/docker.sock
ports:
- "8866:8866"
restart: always
To see full documentation go: https://dockman.radn.dev/docs/intro
See Contributing.md
This project is licensed under the GNU AFFERO GENERAL PUBLIC LICENSE v3.0. See the LICENSE file for details.