Containers

Getting Started with Docker

Learn how to set up and use Docker on Linux.

  1. Install Docker:
sudo apt install docker.io
  1. Start Docker service:
sudo systemctl start docker
  1. Run test container:
sudo docker run hello-world
  1. List containers:
sudo docker ps -a

Read more: Docker Documentation