Skip to content

Portainer-CE

Description⚓︎

Portainer provides an intuitive GUI to manage your docker instance

Docker⚓︎

Basic info⚓︎

Basic info with official links

docker-compose.yml⚓︎

YAML
---
version: '3'
services:
  portainer:
    image: portainer/portainer-ce:latest
    container_name: portainer
    networks:
      - proxy # rename this to your custom docker network
    restart: unless-stopped
    security_opt:
      - no-new-privileges:true
    ports:
      - 8000:8000
      - 9000:9000
    volumes:
      - portainer_data:/data
      - /etc/localtime:/etc/localtime:ro
      - /var/run/docker.sock:/var/run/docker.sock:ro
    labels:
      traefik.enable: true
      traefik.http.services.portainer.loadbalancer.server.port: 9000

volumes:
  portainer_data:

networks:
  proxy:
    external: true

deploy.sh⚓︎

Bash
docker compose up -d