Portainer - Manage your containers

Summary

Portainer is a container management service for docker containers.

Installation via docker-compose

version: "3.3"

services:
  portainer:
    image: "portainer/portainer-ce"
    ports:
      - 9000:9000
    volumes:
      - "/var/run/docker.sock:/var/run/docker.sock:ro"
      - "/home/ubuntu/docker/portainer/data:/data"
    restart: always

To change to business edition, use image portainer/portainer-ee. You can get up to 5 nodes for free.

Setup

Create a administrator user, for example admin.

image-1642434677505.png

Then select Get Started to use the local docker installation.

image-1642434795725.png

 


Revision #3
Created 17 January 2022 15:48:12 by Andreas Greiner
Updated 3 January 2023 09:47:16 by Andreas Greiner