Portainer

Portainer Community Edition is straightforward to install. There are two options: installing new or adding an environment to an existing installation

Images

Docker

https://github.com/christiantusset/boilerplates/blob/main/docker-compose/portainer/docker-compose.yaml
---
version: "3"
services:
  portainer:
    image: portainer/portainer-ce:latest
    container_name: portainer
    ports:
      - 9000:9000
      - 9443:9443
      - 8000:8000
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
      - ./data:/data
    restart: unless-stopped

volumes:
  portainer-data:
    driver: local

Docker Agent

https://github.com/christiantusset/boilerplates/blob/main/docker-compose/portainer-agent/docker-compose.yaml

Last updated