You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# CI/CD Pipeline and Tooling Examples
1
+
# CI/CD Pipeline and Tooling Tutorials
2
2
3
-
This website contains examples on how to develop CI/CD pipelines and how to configure a development environment for working with CI/CD pipelines.
3
+
This website contains tutorials on how to develop CI/CD pipelines and how to configure a development environment for working with CI/CD pipelines.
4
4
5
5
## What are CI/CD pipelines?
6
6
@@ -24,8 +24,8 @@ The CI and CD pipelines are often tightly integrated with each other. Delivery i
24
24
25
25
## Installing Docker
26
26
27
-
Many of the examples provided on this website require Docker and Docker Compose to be installed on your development environment.
27
+
Many of the tutorials provided on this website require Docker and Docker Compose to be installed on your development environment.
28
28
29
29
See [Get Docker](https://docs.docker.com/get-docker/) for official installation instructions. If you use Docker a lot on a Mac or Windows system, the recommended Docker Desktop is likely a good option for you. Note that, since January 2022, it has required paid subscription, if used for commercial development.
30
30
31
-
Alternatively, Windows users can [install Docker on top of WSL2](./docker/docker-on-wsl/). For Mac users there are alternatives, such as [Colima](https://github.com/abiosoft/colima), available.
31
+
Alternatively, Windows users can [install Docker on top of WSL2](./tutorials/docker/docker-on-wsl/). For Mac users there are alternatives, such as [Colima](https://github.com/abiosoft/colima), available.
Copy file name to clipboardExpand all lines: docs/tutorials/gitlab-ci/docker-hub-ratelimit/README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ description: Tutorial on how to test if Docker-in-Docker service in GitLab CI ac
6
6
7
7
The recommended way of running Docker commands in a GitLab CI Kubernets runner is to use a service to run Docker-in-Docker container (`docker:dind`). By default the `docker:dind` container pulls container images from Docker Hub without caching. This can cause problems as pulls from Docker Hub are rate-limited.
8
8
9
-
This example tests how `docker pull ubuntu:24.04` commands consume Docker Hub ratelimit and provides example on how to configure pull-through cache to an Kubernetes cluster working as a GitLab runner.
9
+
This tutorial tests how `docker pull ubuntu:24.04` commands consume Docker Hub ratelimit and provides example on how to configure pull-through cache to an Kubernetes cluster working as a GitLab runner.
10
10
11
11
## How to check if `docker pull` commands are cached
12
12
@@ -15,13 +15,13 @@ Create a new GitLab project with `.gitlab-ci.yml` and `scripts/check-docker-hub-
15
15
The `scripts/check-docker-hub-ratelimit.sh` script prints current Docker Hub ratelimit and also writes the result to a file if filename is given as first parameter. See [Docker Hub usage and rate limits](https://docs.docker.com/docker-hub/download-rate-limit/#how-can-i-check-my-current-rate) article in Docker documentation for more details.
The pipeline defined by `.gitlab-ci.yml` tries to pull the same Docker image twice and checks if the rate limit headers are different after first and second pull.
0 commit comments