Complete the command to check the Docker Desktop version installed on your computer.
docker [1]The docker version command shows the installed Docker Desktop version and client/server details.
Complete the command to list all running containers in Docker Desktop.
docker container [1]The docker container ls command lists all running containers.
Fix the error in the command to start Docker Desktop from the command line on Windows.
start "[1]"
On Windows, the command start "Docker Desktop" opens the Docker Desktop app.
Fill both blanks to create a Docker Desktop command that shows system-wide information and resource usage.
docker [1] [2]
The command docker system info shows detailed system and resource information.
Fill all three blanks to write a command that builds a Docker image with a tag named 'myapp' from the current directory.
docker [1] -t [2] [3]
The command docker build -t myapp . builds an image tagged 'myapp' from the current folder.