Table of Contents
List the running containers:
docker ps
List all containers (running and stopped):
docker ps -a
List the local images:
docker images
Test docker:
docker run --rm ubuntu /bin/echo 'Hello world'