Install Docker:

1. Install Docker via the convenience script:

curl -fsSL https://get.docker.com | bash

2. Start the docker service:

systemctl start docker

3. Create a Docker container running Alma Linux 8.4 for testing:

docker run -dt --device /dev/fuse --cap-add SYS_ADMIN --name s3ql_test almalinux:latest bash

4 …