How to Install Portainer – Docker Web Management UI on OpenSUSE Leap 42.3

Portainer is a simple, rich features and easy to use Docker web management UI. If you are new to Docker and need an easy to use web UI to manage Docker, Portainer is for you. You can manage your docker containers, volumes, images and network from a web interface. You can also access thousands of Docker templates from Portainer. This tutorial will show you how to install Portainer on OpenSUSE Leap 42.3. Before you can install Portainer, you will need to install Docker on OpenSUSE Leap 42.3 first.

portainer on opensuse leap.png

Steps to Install Portainer on OpenSUSE Leap 42.3

Step 1. Install Docker on OpenSUSE Leap

First of all, you will need to install Docker on OpenSUSE Leap first.

Step 2. Install Portainer

Open Terminal and then execute the following commands in sequence

docker volume create portainer_data
docker run -d -p 9000:9000 -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer

Once completed, you can now open your web browser and type: localhost:9000. You will need to create a new user first

portainer first run.png

portainer opensuse.png

As you can see, you may connect Portainer to local Docker or remote one. On this case, I connect Portainer to my locally installed Docker.

Be the first to comment

Leave a Reply