DEV Community

Cover image for [docker] Another small tool that i'm working on
tkhadir
tkhadir

Posted on

[docker] Another small tool that i'm working on

A small adventure that i took recently is to try developping a small tool to control my containers deployement by consuming docker api engine.

https://docs.docker.com/engine/api/v1.40/

My experience with using rancher was good so i tried to reproduce that with my own tool.

first of all you will need to edit and restart your docker.service file

vi /lib/systemd/system/docker.service
#edit this line like : 
ExecStart=/usr/bin/dockerd -H=fd:// -H=tcp://0.0.0.0:5555
systemctl daemon-reload
sudo service docker restart
Enter fullscreen mode Exit fullscreen mode

You can contribue : https://github.com/tkhadir/docker-manager

Thank you :)

List of images

Alt Text

List of containers running

Alt Text

Top comments (0)