Getting Started with Docker
Learn how to set up and use Docker on Linux.
- Install Docker:
sudo apt install docker.io
- Start Docker service:
sudo systemctl start docker
- Run test container:
sudo docker run hello-world
- List containers:
sudo docker ps -a
Read more: Docker Documentation