Use Docker on DEBIX

2024.1.3by debix.io

To install and use Docker on DEBIX Model A ubuntu22.04, proceed as follows:

1. Update system

sudo apt update

2. Install Docker

sudo apt install docker.io

3. Start Docker service

sudo systemctl start docker

4. Set Docker to start from startup

sudo systemctl enable docker

5. Verify the installation

docker --version

6. Run the first container

docker run hello-world