0
0
Dockerdevops~20 mins

Docker Desktop overview - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Docker Desktop Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
💻 Command Output
intermediate
1:30remaining
Docker Desktop: Checking Running Containers
You run the command docker ps on Docker Desktop. What output do you expect if no containers are currently running?
Docker
docker ps
AError: No containers found
BCONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
CList of all containers including stopped ones
DShows running containers with detailed logs
Attempts:
2 left
💡 Hint
Think about what docker ps shows by default.
🧠 Conceptual
intermediate
1:30remaining
Docker Desktop: Purpose of Docker Engine
What is the main role of the Docker Engine in Docker Desktop?
AIt manages and runs containers on your machine
BIt updates Docker Desktop automatically
CIt stores Docker images in the cloud
DIt provides the graphical user interface for Docker Desktop
Attempts:
2 left
💡 Hint
Think about what runs containers behind the scenes.
Troubleshoot
advanced
2:00remaining
Docker Desktop: Diagnosing Network Issues
You notice containers cannot access the internet when running on Docker Desktop. Which setting is most likely causing this issue?
ADocker Desktop is running in offline mode
BDocker Engine is not installed
CContainers are running in privileged mode
DDocker Desktop's network proxy settings are misconfigured
Attempts:
2 left
💡 Hint
Check settings that affect container network access.
🔀 Workflow
advanced
2:30remaining
Docker Desktop: Updating Docker Engine
Which sequence correctly describes how Docker Desktop updates the Docker Engine?
A1,2,3,4
B2,1,3,4
C1,3,2,4
D3,2,1,4
Attempts:
2 left
💡 Hint
Updates start by checking for new versions before downloading.
Best Practice
expert
3:00remaining
Docker Desktop: Managing Disk Space Efficiently
What is the best practice to free disk space used by Docker Desktop without losing important data?
ARestart Docker Desktop to automatically clear disk space
BDelete the entire Docker Desktop application and reinstall it
CRun <code>docker system prune -a</code> to remove all unused data including images and containers
DManually delete files from Docker Desktop's internal folders
Attempts:
2 left
💡 Hint
Consider commands that clean unused Docker resources safely.