Execute Host Commands Inside a Running Container
Leverage your knowledge of Linux namespaces to reach an application's internal debug interface without installing anything into the container.
Focused hands-on problems designed to help you hone your DevOps or Server Side skills. Some challenges are more educational, while others are based on real-world scenarios. The platform provides hints and feedback for each challenge, including automated solution checks.
Leverage your knowledge of Linux namespaces to reach an application's internal debug interface without installing anything into the container.
Learn how to run multiple Docker containers sharing the same PID, IPC, and network namespaces - a foundation of many advanced container use cases, including Kubernetes Pods construction and container debugging tools.
Explore the key container management operations by walking through all the phases of the container lifecycle - from creation to termination and removal.
Your Docker host has been in use for a while. Anonymous and named volumes piled up, disk space is tight, and it's time to clean stuff up.
Learn the difference between named and anonymous volumes and avoid accidental data loss when upgrading a database container.
Learn how to persist the application's on-disk state using a volume so you can replace a container with a newer version while keeping existing data intact.
Learn the difference between stopping and permanently removing containers while operating a personal finance tracker application.
Learn how to execute commands inside running containers using 'docker exec' - a crucial skill for debugging containerized applications and exploring container environments.
Learn how to override a container's default entrypoint to run an interactive shell instead of the intended application, a useful technique for debugging and exploring containerized applications.
Learn how to build and publish an uncompressed container image - a helpful trick to optimize disk I/O for large images, especially when you can benefit from a fast internal network.