From a463d3290fe45d31fc36344fe77cc4ac04838086 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Tue, 13 Apr 2021 15:37:57 +0200 Subject: [PATCH] use primary-btn instead of outline-btn Signed-off-by: Sebastiaan van Stijn --- docker-for-windows/install.md | 2 +- get-started/orchestration.md | 2 +- language/nodejs/build-images.md | 2 +- language/nodejs/configure-ci-cd.md | 2 +- language/nodejs/develop.md | 2 +- language/nodejs/index.md | 2 +- language/nodejs/run-containers.md | 2 +- language/nodejs/run-tests.md | 2 +- language/python/build-images.md | 2 +- language/python/configure-ci-cd.md | 2 +- language/python/develop.md | 2 +- language/python/index.md | 2 +- language/python/run-containers.md | 2 +- test.md | 4 ++-- 14 files changed, 15 insertions(+), 15 deletions(-) diff --git a/docker-for-windows/install.md b/docker-for-windows/install.md index a53c5fb217..0857598401 100644 --- a/docker-for-windows/install.md +++ b/docker-for-windows/install.md @@ -11,7 +11,7 @@ You can download Docker Desktop for Windows from Docker Hub. [Download from Docker Hub](https://hub.docker.com/editions/community/docker-ce-desktop-windows/){: -.button .outline-btn} +.button .primary-btn} By downloading Docker Desktop, you agree to the terms of the [Docker Software End User License Agreement](https://www.docker.com/legal/docker-software-end-user-license-agreement){: target="_blank" rel="noopener" class="_"} and the [Docker Data Processing Agreement](https://www.docker.com/legal/data-processing-agreement){: target="_blank" rel="noopener" class="_"}. diff --git a/get-started/orchestration.md b/get-started/orchestration.md index 3eb350ce47..2d3aca5de7 100644 --- a/get-started/orchestration.md +++ b/get-started/orchestration.md @@ -317,7 +317,7 @@ Docker Desktop runs primarily on Docker Engine, which has everything you need to At this point, you've confirmed that you can run simple containerized workloads in Kubernetes and Swarm. The next step will be to write the Kubernetes yaml that describes how to run and manage these containers on Kubernetes. -[On to deploying to Kubernetes >>](kube-deploy.md){: class="button outline-btn" style="margin-bottom: 30px; margin-right: 200%"} +[On to deploying to Kubernetes >>](kube-deploy.md){: class="button primary-btn" style="margin-bottom: 30px; margin-right: 200%"} To learn how to write the stack file to help you run and manage containers on Swarm, see [Deploying to Swarm](swarm-deploy.md). diff --git a/language/nodejs/build-images.md b/language/nodejs/build-images.md index 9f4d6e7acd..c16a4920c6 100644 --- a/language/nodejs/build-images.md +++ b/language/nodejs/build-images.md @@ -253,7 +253,7 @@ Our image that was tagged with `:v1.0.0` has been removed but we still have the In this module, we took a look at setting up our example Node application that we will use for the rest of the tutorial. We also created a Dockerfile that we used to build our Docker image. Then, we took a look at tagging our images and removing images. In the next module, we’ll take a look at how to: -[Run your image as a container](run-containers.md){: .button .outline-btn} +[Run your image as a container](run-containers.md){: .button .primary-btn} ## Feedback diff --git a/language/nodejs/configure-ci-cd.md b/language/nodejs/configure-ci-cd.md index 7e0c23e3c2..bab6196aa3 100644 --- a/language/nodejs/configure-ci-cd.md +++ b/language/nodejs/configure-ci-cd.md @@ -233,7 +233,7 @@ In this module, you have learnt how to set up GitHub Actions workflow to an exis You can also consider deploying your application to the cloud. For detailed instructions, see: -[Deploy your app to the cloud](/deploy.md){: .button .outline-btn} +[Deploy your app to the cloud](/deploy.md){: .button .primary-btn} ## Feedback diff --git a/language/nodejs/develop.md b/language/nodejs/develop.md index 2ab2852a8d..613d2194f4 100644 --- a/language/nodejs/develop.md +++ b/language/nodejs/develop.md @@ -224,7 +224,7 @@ In this module, we took a look at creating a general development image that we c In the next module, we’ll take a look at how to run unit tests in Docker. See: -[Run your tests](run-tests.md){: .button .outline-btn} +[Run your tests](run-tests.md){: .button .primary-btn} ## Feedback diff --git a/language/nodejs/index.md b/language/nodejs/index.md index d6dc83a15c..d775e48763 100644 --- a/language/nodejs/index.md +++ b/language/nodejs/index.md @@ -19,6 +19,6 @@ After completing the Node.js getting started modules, you should be able to cont Let's get started! -[Build your Node.js image](build-images.md){: .button .outline-btn} +[Build your Node.js image](build-images.md){: .button .primary-btn}
diff --git a/language/nodejs/run-containers.md b/language/nodejs/run-containers.md index cc8ae4adf6..46b3c0dcfc 100644 --- a/language/nodejs/run-containers.md +++ b/language/nodejs/run-containers.md @@ -197,7 +197,7 @@ Now, we can easily identify our container based on the name. In this module, we took a look at running containers, publishing ports, and running containers in detached mode. We also took a look at managing containers by starting, stopping, and restarting them. We also looked at naming our containers so they are more easily identifiable. In the next module, we’ll learn how to run a database in a container and connect it to our application. See: -[How to develop your application](develop.md){: .button .outline-btn} +[How to develop your application](develop.md){: .button .primary-btn} ## Feedback diff --git a/language/nodejs/run-tests.md b/language/nodejs/run-tests.md index ce66bcb0bd..353730944a 100644 --- a/language/nodejs/run-tests.md +++ b/language/nodejs/run-tests.md @@ -285,7 +285,7 @@ In this module, we took a look at running tests as part of our Docker image buil In the next module, we’ll take a look at how to set up a CI/CD pipeline using GitHub Actions. See: -[Configure CI/CD](configure-ci-cd.md){: .button .outline-btn} +[Configure CI/CD](configure-ci-cd.md){: .button .primary-btn} ## Feedback diff --git a/language/python/build-images.md b/language/python/build-images.md index f7a1e37c4c..1747e06887 100644 --- a/language/python/build-images.md +++ b/language/python/build-images.md @@ -233,7 +233,7 @@ Our image that was tagged with `:v1.0.0` has been removed, but we still have the In this module, we took a look at setting up our example Python application that we will use for the rest of the tutorial. We also created a Dockerfile that we used to build our Docker image. Then, we took a look at tagging our images and removing images. In the next module we’ll take a look at how to: -[Run your image as a container](run-containers.md){: .button .outline-btn} +[Run your image as a container](run-containers.md){: .button .primary-btn} ## Feedback diff --git a/language/python/configure-ci-cd.md b/language/python/configure-ci-cd.md index 870b6672ce..04a1f5c2ba 100644 --- a/language/python/configure-ci-cd.md +++ b/language/python/configure-ci-cd.md @@ -233,7 +233,7 @@ In this module, you have learnt how to set up GitHub Actions workflow to an exis You can also consider deploying your application to the cloud. For detailed instructions, see: -[Deploy your application to the cloud](deploy.md){: .button .outline-btn} +[Deploy your application to the cloud](deploy.md){: .button .primary-btn} ## Feedback diff --git a/language/python/develop.md b/language/python/develop.md index 9df6c0884a..f003fcaa3d 100644 --- a/language/python/develop.md +++ b/language/python/develop.md @@ -247,7 +247,7 @@ In this module, we took a look at creating a general development image that we c In the next module, we’ll take a look at how to set up a CI/CD pipeline using GitHub Actions. See: -[Configure CI/CD](configure-ci-cd.md){: .button .outline-btn} +[Configure CI/CD](configure-ci-cd.md){: .button .primary-btn} ## Feedback diff --git a/language/python/index.md b/language/python/index.md index e919446528..48dab19276 100644 --- a/language/python/index.md +++ b/language/python/index.md @@ -21,6 +21,6 @@ After completing the Python getting started modules, you should be able to conta Let's get started! -[Build your first Python image](build-images.md){: .button .outline-btn} +[Build your first Python image](build-images.md){: .button .primary-btn}
diff --git a/language/python/run-containers.md b/language/python/run-containers.md index a2bfc3dc05..c8530af233 100644 --- a/language/python/run-containers.md +++ b/language/python/run-containers.md @@ -180,7 +180,7 @@ That’s better! We can now easily identify our container based on the name. In this module, we took a look at running containers, publishing ports, and running containers in detached mode. We also took a look at managing containers by starting, stopping, and, restarting them. We also looked at naming our containers so they are more easily identifiable. In the next module, we’ll learn how to run a database in a container and connect it to our application. See: -[How to develop your application](develop.md){: .button .outline-btn} +[How to develop your application](develop.md){: .button .primary-btn} ## Feedback diff --git a/test.md b/test.md index 484c0109e1..84ae413b4d 100644 --- a/test.md +++ b/test.md @@ -243,11 +243,11 @@ only need to do it on the first one. If you have a ``, set it there. -

Go to the docs!

+

Go to the docs!

It is dark here. You are likely to be eaten by a grue.

-

Go to the docs!

+

Go to the docs!

It is dark here. You are likely to be eaten by a grue.