systems:docker_main:initial_docker
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
systems:docker_main:initial_docker [2021/07/15 10:37] – peter | systems:docker_main:initial_docker [2021/07/15 10:43] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Systems - Docker Main - Initial Docker ====== | ||
- | |||
- | ===== Install Dependencies ===== | ||
- | |||
- | Install dependencies necessary to add a new HTTPS repository. | ||
- | |||
- | <code bash> | ||
- | sudo apt install apt-transport-https ca-certificates curl gnupg-agent software-properties-common | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Import the Docker GPG Key ===== | ||
- | |||
- | <code bash> | ||
- | curl -fsSL https:// | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Add the Docker apt Repository ===== | ||
- | |||
- | <code bash> | ||
- | sudo add-apt-repository "deb [arch=amd64] https:// | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Install Docker ===== | ||
- | |||
- | <code bash> | ||
- | sudo apt update | ||
- | sudo apt install docker-ce docker-ce-cli containerd.io | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **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: <code bash> | ||
- | sudo apt update | ||
- | apt list -a docker-ce | ||
- | </ | ||
- | |||
- | * and install with: <code bash> | ||
- | sudo apt install docker-ce=< | ||
- | </ | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | sudo apt update | ||
- | sudo apt upgrade | ||
- | </ | ||
- | |||
- | * To prevent the Docker package from being updated, mark it as held back: <code bash> | ||
- | sudo apt-mark hold docker-ce | ||
- | </ | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Check the Docker Status ===== | ||
- | |||
- | <code bash> | ||
- | sudo systemctl status docker | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Set Permissions ===== | ||
- | |||
- | Non-Root User | ||
- | |||
- | <code bash> | ||
- | sudo usermod -aG docker $USER | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | |||
- | * **$USER** is an environment variable that holds the logged in username. | ||
- | |||
- | * Log out and log back in so that the group membership is refreshed. | ||
- | </ | ||
systems/docker_main/initial_docker.1626345432.txt.gz · Last modified: 2021/07/15 10:37 by peter