ไม่สามารถเล่นวิดีโอนี้
ขออภัยในความไม่สะดวก

Homelab - Docker, Cockpit and Portainer install

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 ส.ค. 2024
  • Installed Docker, Cockpit and Portainer
    ===============================
    Install Docker
    ===============================
    curl -fsSL get.docker.com -o get-docker.sh
    sh get-docker.sh
    usermod -aG docker root
    systemctl start docker
    sudo systemctl enable docker
    ==============================
    Install Cockpit
    ==============================
    yum install cockpit cockpit-docker
    systemctl enable --now cockpit.socket
    ==============================
    Install Portainer 2.x
    ==============================
    1) docker volume create portainer_data
    2) docker run -d -p 9000:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce

ความคิดเห็น • 1

  • @cmdaltctr
    @cmdaltctr 2 ปีที่แล้ว

    Hi, many thanks for this video. I was wondering if you could do a video on setting up a Portainer behind Nginx reverse proxy in Rocky Linux? I noticed that the cockpit-docker package is no longer available for most OS, they require to use Podman instead. My instance is that I have Cockpit behind Nginx, and would love the Portainer to be the same as well.