--- title: What's next keywords: concepts, build, images, container, docker desktop description: Explore step-by-step guides to hep you understand core Docker concepts, building images, and running containers. aliases: - /guides/getting-started/whats-next/ summary: | Now that you have set up Docker Desktop, developed with containers, and built and pushed your first image, you are ready to take the next step and dive deep into what a container is and how it works. notoc: true weight: 4 the-basics: - title: What is a container? description: Learn how to run your first container. link: /get-started/docker-concepts/the-basics/what-is-a-container/ - title: What is an image? description: Learn the basics of image layers. link: /get-started/docker-concepts/the-basics/what-is-an-image/ - title: What is a registry? description: Learn about container registries, explore their interoperability, and interact with registries. link: /get-started/docker-concepts/the-basics/what-is-a-registry/ - title: What is Docker Compose? description: Gain a better understanding of Docker Compose. link: /get-started/docker-concepts/the-basics/what-is-docker-compose/ building-images: - title: Understanding image layers description: Learn about the layers of container images. link: /get-started/docker-concepts/building-images/understanding-image-layers/ - title: Writing a Dockerfile description: Learn how to create an image using a Dockerfile. link: /get-started/docker-concepts/building-images/writing-a-dockerfile/ - title: Build, tag and publish an image description: Learn how to build, tag, and publish an image to Docker Hub or any other registry. link: /get-started/docker-concepts/building-images/build-tag-and-publish-an-image/ - title: Using the build cache description: Learn about the build cache, what changes invalidate the cache, and how to effectively use the build cache. link: /get-started/docker-concepts/building-images/using-the-build-cache/ - title: Multi-stage builds description: Get a better understanding of multi-stage builds and their benefits. link: /get-started/docker-concepts/building-images/multi-stage-builds/ running-containers: - title: Publishing ports description: Understand the significance of publishing and exposing ports in Docker. link: /get-started/docker-concepts/running-containers/publishing-ports/ - title: Overriding container defaults description: Learn how to override the container defaults using the `docker run` command. link: /get-started/docker-concepts/running-containers/overriding-container-defaults/ - title: Persisting container data description: Learn the significance of data persistence in Docker. link: /get-started/docker-concepts/running-containers/persisting-container-data/ - title: Sharing local files with containers description: Explore the various storage options available in Docker and their common usage. link: /get-started/docker-concepts/running-containers/sharing-local-files/ - title: Multi-container applications description: Learn the significance of multi-container applications and how they're different from single-container applications. link: /get-started/docker-concepts/running-containers/multi-container-applications/ --- The following sections provide step-by-step guides to help you understand core Docker concepts, building images, and running containers. ## The basics Get started learning the core concepts of containers, images, registries, and Docker Compose. {{< grid items="the-basics" >}} ## Building images Craft optimized container images with Dockerfiles, build cache, and multi-stage builds. {{< grid items="building-images" >}} ## Running containers Master essential techniques for exposing ports, overriding defaults, persisting data, sharing files, and managing multi-container applications. {{< grid items="running-containers" >}}