Docker Stack GUI

In order to have a good overview of the cluster with respect to Docker I have chosen Portainer for a graphical presentation. Many other open sources are available.

Use the following Docker commands to deploy the Portainer Server:

$ docker volume create portainer_data
$ docker run -d -p 9000:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce

You’ll just need to access the port 9000 of the Docker engine where portainer is running using your browser.

And you’ll be able to see running containers:

Further using VNC Viewer for direct access to each node:

Beyond scope of this site you should investigate:

  • Portainer-ce
  • Docker Desktop for Microsoft (Application for Windows)

Development takes place at a speed never seen before.

Leave a Reply

Your email address will not be published. Required fields are marked *