Skip to content

CherryDock/CherryDock

Repository files navigation

License: GPL v3 Go Maintainability codecov

Cherry Dock

Cherry Dock is an open source docker monitoring and management tool written in Golang & React. It allows user to perform basic operations on docker containers and analyze various metrics about containers ressources. For the time being, it only supports standalone docker engine.

Deploy CherryDock

To deploy cherrydock on a linux host, run le following :
docker build -t cherrydock .
docker run --name cherrydock \
    -v /var/run/docker.sock:/run/docker.sock \
    -p 5000:5000 \
    -i -d cherrydock:latest

NB: Api & UI are running in the same container