Install Portainer in our new Docker environment
Install Portainer Tired of using docker in cli and want a webui to help manage things? Here we go. Bring up the Portainer image We’ll go with what the Portainer docs say except for one tweak. Portainer sets the image to restart: always and for me I like restart: unless-stopped. This way if I stop the container it stays stopped until I start it again. First create a volume for the Portainer data then run the Portainer image. ...