-
Notifications
You must be signed in to change notification settings - Fork 6
Installation with Docker Podman
Stefan Weil edited this page Dec 11, 2024
·
3 revisions
These instructions were tested on Debian bookworm and Ubuntu 24.04 LTS (noble).
Either Docker (commercial) or Podman (free) can be used.
sudo apt update
sudo apt install curl git
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"
sudo apt update
sudo apt install docker-ce
The Docker version from the official Debian / Ubuntu package sources is older than the one from docker.com, but works fine.
Note that older Docker versions like this one don't support docker compose
.
Use them with docker-compose
which works similar.
sudo apt update
sudo apt install curl git docker.io docker-compose
sudo apt update
sudo apt install curl git podman podman-compose