Docker is a containerization platform that allows you to package applications and their dependencies into containers.
Try running a simple hello-world container:
docker run hello-world
It should output a welcome message.
List running containers:
docker ps
List all containers (including stopped ones):
docker ps -a
Stop a container:
docker stop <container_id>
Remove a container:
docker rm <container_id>
List all images:
docker images
Remove an image:
docker rmi <image_id>