Docker requirements¶
- Docker Engine
- Docker Compose (the
docker composeplugin, included with current Docker installs)
If you do not have Docker yet, install it. The quickest way on most Linux distributions is the official convenience script:
Or install it from your distribution's packages:
Debian / Ubuntu
Fedora / RHEL / Rocky / AlmaLinux
For the most current, distribution-specific steps (and Docker Desktop on macOS or Windows), follow the official guide at https://docs.docker.com/engine/install/.
After installing, start Docker and, optionally, allow your user to run it without
sudo:
sudo systemctl enable --now docker
sudo usermod -aG docker "$USER" # log out and back in for this to take effect
Verify it works:
Next: install Bakdrop with Docker.