From 977a990ba72789322c2e61cc7ebc50401fc28958 Mon Sep 17 00:00:00 2001 From: David Karlsson <35727626+dvdksn@users.noreply.github.com> Date: Thu, 16 May 2024 06:59:51 +0200 Subject: [PATCH] guides: use "Try it out" consistently in concept headings Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- .../docker-concepts/building-images/multi-stage-builds.md | 2 +- .../guides/docker-concepts/the-basics/what-is-a-container.md | 2 +- content/guides/docker-concepts/the-basics/what-is-a-registry.md | 2 +- content/guides/docker-concepts/the-basics/what-is-an-image.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/content/guides/docker-concepts/building-images/multi-stage-builds.md b/content/guides/docker-concepts/building-images/multi-stage-builds.md index 2e0c540b66..d0db2f3835 100644 --- a/content/guides/docker-concepts/building-images/multi-stage-builds.md +++ b/content/guides/docker-concepts/building-images/multi-stage-builds.md @@ -42,7 +42,7 @@ This Dockerfile uses two stages: - The final stage uses a smaller base image suitable for running your application. It copies the compiled artifacts (a JAR file, for example) from the build stage. Finally, it defines the runtime configuration (using `CMD` or `ENTRYPOINT`) for starting your application. -## Try it now +## Try it out In this hands-on guide, you'll unlock the power of multi-stage builds to create lean and efficient Docker images for a sample Java application. You'll use a simple “Hello World” Spring Boot-based application built with Maven as your example. diff --git a/content/guides/docker-concepts/the-basics/what-is-a-container.md b/content/guides/docker-concepts/the-basics/what-is-a-container.md index 8b117a1294..b32ffb27b9 100644 --- a/content/guides/docker-concepts/the-basics/what-is-a-container.md +++ b/content/guides/docker-concepts/the-basics/what-is-a-container.md @@ -36,7 +36,7 @@ A container is simply an isolated process with all of the files it needs to run. > Quite often, you will see containers and VMs used together. As an example, in a cloud environment, the provisioned machines are typically VMs. However, instead of provisioning one machine to run one application, a VM with a container runtime can run multiple containerized applications, increasing resource utilization and reducing costs. -## Try it now +## Try it out In this hands-on, you will see how to run a Docker container using the Docker Desktop GUI. diff --git a/content/guides/docker-concepts/the-basics/what-is-a-registry.md b/content/guides/docker-concepts/the-basics/what-is-a-registry.md index 4ad60a309d..eab17a1df2 100644 --- a/content/guides/docker-concepts/the-basics/what-is-a-registry.md +++ b/content/guides/docker-concepts/the-basics/what-is-a-registry.md @@ -26,7 +26,7 @@ A _registry_ is a centralized location that stores and manages container images, > > You can create one private repository and unlimited public repositories using the free version of Docker Hub. For more information, visit the [Docker Hub subscription page](https://www.docker.com/pricing/). -## Try it now +## Try it out In this hands-on, you will learn how to build and push a Docker image to the Docker Hub repository. diff --git a/content/guides/docker-concepts/the-basics/what-is-an-image.md b/content/guides/docker-concepts/the-basics/what-is-an-image.md index 1ca9b5fa48..f37eb0f752 100644 --- a/content/guides/docker-concepts/the-basics/what-is-an-image.md +++ b/content/guides/docker-concepts/the-basics/what-is-an-image.md @@ -36,7 +36,7 @@ Docker Hub provides a variety of Docker-supported and endorsed images known as D For example, [Redis](https://hub.docker.com/_/redis) and [Memcached](https://hub.docker.com/_/memcached) are a few popular ready-to-go Docker Official Images. You can download these images and have these services up and running in a matter of seconds. There are also base images, like the [Node.js](https://hub.docker.com/_/node) Docker image, that you can use as a starting point and add your own files and configurations. -## Try it now +## Try it out {{< tabs group=concept-usage persist=true >}} {{< tab name="Using the GUI" >}}