Docker GUI?

Опубликовано: 14 Май 2026
на канале: Tytan Teaches
9
1

Learn docker without actually learning docker. In this video I teach you how to setup and install portainer - a docker gui. Docker is ALL command line, you need to learn all sorts of flags (-t -f) and docker commands that dont even have docker in the command itself. With portainer you don't have to learn a cli (terminal) at ALL, you just have to move your mouse around and click.


commands:

sudo apt update && sudo apt upgrade -y && sudo apt install docker.io -y


sudo docker volume create portainer_data


sudo 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