In this video, we create a Ubuntu VM in Proxmox and install Docker and Portainer on that VM. Portainer is an amazing tool that can make creating and managing Docker containers even more enjoyable. You can easily spin up a web development environment on Docker, a Plex Media server, and much more.
------------------------------------
Ubuntu Server ISO: https://ubuntu.com/download/server
Docker Install:
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
Portainer Install:
docker volume create portainer_data
docker run -d -p 8000:8000 -p 9443:9443 --name portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce:latest
Portainer App Template: https://github.com/Qballjos/portainer_templates
----------------------------
00:00 - Intro
02:35 - Creating the Ubuntu VM
10:18 - Installing Docker
12:05 - Installing Portainer
12:55 - Portainer Web Interface Overview
#portainer #proxmox #docker #ubuntu