Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.22 KB

File metadata and controls

42 lines (33 loc) · 1.22 KB

Docker

Install Docker with Docker Compose

Installation

Ideally Docker will be installed with Ansible. See https://github.com/geerlingguy/ansible-role-docker

Example:

- hosts: all
  roles:
    - geerlingguy.docker

Without Ansible, install with the CLI see https://docs.docker.com/engine/install/

Ubuntu Example:

# Add Docker's official GPG key:
sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc

# Add the repository to Apt sources:
echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
  $(. /etc/os-release && echo "${UBUNTU_CODENAME:-$VERSION_CODENAME}") stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update

sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

RHEL Example:

sudo dnf install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

sudo systemctl enable --now docker

Note that both methods also install docker compose.