Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve Docker installation #141

Merged
merged 1 commit into from
Feb 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 4 additions & 12 deletions src/docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,14 @@ laptops, data center VMs, or the cloud.

## Installation

### Via package manager
First, you need to [set up the Docker repository][dockerapt].

```bash
sudo apt install docker.io docker-compose
```

### Manually

Go to [download.docker.com][dockerddl] and
choose `amd64`, `armhf`, `ppc64el`, or `s390x`. Download the `.deb` file
for the Docker version you want to install.
[dockerapt]: https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository

[dockerddl]: https://download.docker.com/linux/ubuntu/dists/focal/pool/stable/
Then, to install the latest version, run:

```bash
sudo dpkg -i /path/to/package.deb
sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
```

## Configuration
Expand Down
Loading