Install Docker on Ubuntu 16.04

Опубликовано: 17 Октябрь 2024
на канале: Swaym Aks
157
0

This video illustrates the steps to install, configure and use docker commands to create docker images and containers.

********************************************************************
Commands:
curl -fsSL https://download.docker.com/linux/ubu... | sudo apt-key add -

sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"

sudo apt-get update

apt-cache policy docker-ce

**************************

sudo apt-get install -y docker-ce


docker commit -m "Installed node.js" -a "Aks" 2ae8dc29c356 reporsitory/ubuntu-node.js