User Tools

Site Tools


systems:docker_main:initial_docker

This is an old revision of the document!


Systems - Docker Main - Initial Docker

Install Dependencies

Install dependencies necessary to add a new HTTPS repository.

sudo apt install apt-transport-https ca-certificates curl gnupg-agent software-properties-common

Import the Docker GPG Key

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

Add the Docker apt Repository

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

Install Docker

sudo apt update
sudo apt install docker-ce docker-ce-cli containerd.io

NOTE: This will install the latest version of Docker.

  • The Docker service will start automatically after the install.
  • To install a specific version of Docker, list available versions:
    sudo apt update
    apt list -a docker-ce

and install with:

sudo apt install docker-ce=<VERSION> docker-ce-cli=<VERSION> containerd.io

Check the Docker Status

sudo systemctl status docker

systems/docker_main/initial_docker.1626345119.txt.gz ยท Last modified: 2021/07/15 10:31 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki