Installation auf Proxmox LXC


Installation von Docker auf einem Debian 11 Linux Container

  • apt-get update
  • apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg-agent \ software-properties-common
  • curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add –
  • add-apt-repository \ „deb [arch=amd64] https://download.docker.com/linux/debian \ $(lsb_release -cs) \ stable“
  • apt-get update
  • apt-get install docker-ce docker-ce-cli containerd.io

Installation von Portainer auf einem Debian 11 Linux Container

  • docker volume create portainer_data
  • docker run -d -p 8000:8000 -p 9000:9000 –name=portainer –restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce
  • http://IP_ADRESSE:9000/