Docker commands are executed inside WSL Ubuntu terminal.
Commands executed:
wsl

Docker client and server versions are verified.
Commands executed:
docker version

This step checks Docker engine configuration and runtime details.
Commands executed:
docker info

Initially checks for locally available Docker images.
Commands executed:
docker images

Ubuntu image is pulled automatically if not available and container is executed.
Commands executed:
docker run ubuntu
docker run -it --name test ubuntu bash
exit

Both running and stopped containers are inspected.
Commands executed:
docker ps
docker ps -a

Docker was successfully verified on WSL Ubuntu. Ubuntu containers were created, executed, exited, and inspected using Docker CLI commands.
docker ps and docker ps -a