portainer#
description:#
Portainer is a great application for the management of containers from a web gui. I am using it to manage my docker
environment.
source and credits: docker image - portainer/portainer-ce from portainer.io
usage#
The program is a container itself and provides a browser interface to manage other containers. The local url: http://localhost:9000
dependencies#
You first need a working Docker
environment.
installation#
create a docker volume
called portainer_data
$ docker volume create portainer_data
Run the following command to create the container. If needed, follow the official installation guide (see section for docker)
$ docker run -d -p 8000:8000 -p 9000:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce