OPERATING SYSTEMSOS Linux

Install Docker and Portainer on Ubuntu in 2 Minutes

It’s super easy to get Docker and Portainer up and running on Ubuntu with just a few commands.

Update System

sudo apt update
sudo apt upgrade

Install Docker

sudo apt install docker.io
sudo systemctl enable docker
sudo systemctl start docker
sudo systemctl status docker

Now Install Portainer

sudo docker run -d
–name=”portainer”
–restart on-failure
-p 9000:9000
-v /var/run/docker.sock:/var/run/docker.sock
-v portainer_data:/data
portainer/portainer-ce

Tags used in this video:
proxmox, 2020, bookstack, nashosted, nashosted.com, proxmox, nas, ubuntu, install docker on ubuntu, install portainer on ubuntu, homelab, selfhosting, docker, portainer

source

ubuntu

Leave a Reply

Your email address will not be published. Required fields are marked *