Challenge - 5 Problems
Docker Desktop Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
💻 Command Output
intermediate1: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
Attempts:
2 left
💡 Hint
Think about what
docker ps shows by default.✗ Incorrect
The docker ps command lists only running containers. If none are running, it shows just the header row.
🧠 Conceptual
intermediate1:30remaining
Docker Desktop: Purpose of Docker Engine
What is the main role of the Docker Engine in Docker Desktop?
Attempts:
2 left
💡 Hint
Think about what runs containers behind the scenes.
✗ Incorrect
The Docker Engine is the core software that builds, runs, and manages containers locally.
❓ Troubleshoot
advanced2: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?
Attempts:
2 left
💡 Hint
Check settings that affect container network access.
✗ Incorrect
Incorrect proxy settings in Docker Desktop can block container internet access.
🔀 Workflow
advanced2:30remaining
Docker Desktop: Updating Docker Engine
Which sequence correctly describes how Docker Desktop updates the Docker Engine?
Attempts:
2 left
💡 Hint
Updates start by checking for new versions before downloading.
✗ Incorrect
The update process begins by checking for updates, then downloading, installing, restarting, and verifying.
✅ Best Practice
expert3:00remaining
Docker Desktop: Managing Disk Space Efficiently
What is the best practice to free disk space used by Docker Desktop without losing important data?
Attempts:
2 left
💡 Hint
Consider commands that clean unused Docker resources safely.
✗ Incorrect
docker system prune -a safely removes unused containers, networks, images, and build cache, freeing space without affecting running containers.