mirror of https://github.com/docker/docs.git
use primary-btn instead of outline-btn
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
428305eb77
commit
a463d3290f
|
@ -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="_"}.
|
||||
|
||||
|
|
|
@ -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).
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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}
|
||||
|
||||
<br />
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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}
|
||||
|
||||
<br />
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
4
test.md
4
test.md
|
@ -243,11 +243,11 @@ only need to do it on the first one. If you have a `<th>`, set it there.
|
|||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><a class="button outline-btn" href="/">Go to the docs!</a></p>
|
||||
<p><a class="button primary-btn" href="/">Go to the docs!</a></p>
|
||||
<p><a href="/"><font color="#BDBDBD" size="-1">It is dark here. You are likely to be eaten by a grue.</font></a></p>
|
||||
</td>
|
||||
<td>
|
||||
<p><a class="button outline-btn" href="/">Go to the docs!</a></p>
|
||||
<p><a class="button primary-btn" href="/">Go to the docs!</a></p>
|
||||
<p><a href="/"><font color="#BDBDBD" size="-1">It is dark here. You are likely to be eaten by a grue.</font></a></p>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
Loading…
Reference in New Issue