Merge branch 'docs-code-block-style-8' into 'master'
Fix whitespace in ci docs See merge request gitlab-org/gitlab-ce!30655
This commit is contained in:
commit
28d95c0ca6
7 changed files with 449 additions and 445 deletions
|
@ -526,6 +526,7 @@ it's provided as an environment variable. This is because GitLab Runnner uses **
|
||||||
runtime.
|
runtime.
|
||||||
|
|
||||||
### Using statically-defined credentials
|
### Using statically-defined credentials
|
||||||
|
|
||||||
There are two approaches that you can take in order to access a
|
There are two approaches that you can take in order to access a
|
||||||
private registry. Both require setting the environment variable
|
private registry. Both require setting the environment variable
|
||||||
`DOCKER_AUTH_CONFIG` with appropriate authentication info.
|
`DOCKER_AUTH_CONFIG` with appropriate authentication info.
|
||||||
|
@ -662,6 +663,7 @@ To configure credentials store, follow these steps:
|
||||||
Make sure helper program is available in GitLab Runner `$PATH`.
|
Make sure helper program is available in GitLab Runner `$PATH`.
|
||||||
|
|
||||||
1. Make GitLab Runner use it. There are two ways to accomplish this. Either:
|
1. Make GitLab Runner use it. There are two ways to accomplish this. Either:
|
||||||
|
|
||||||
- Create a
|
- Create a
|
||||||
[variable](../variables/README.md#gitlab-cicd-environment-variables)
|
[variable](../variables/README.md#gitlab-cicd-environment-variables)
|
||||||
`DOCKER_AUTH_CONFIG` with the content of the
|
`DOCKER_AUTH_CONFIG` with the content of the
|
||||||
|
@ -693,6 +695,7 @@ To configure access for `aws_account_id.dkr.ecr.region.amazonaws.com`, follow th
|
||||||
1. Make sure `docker-credential-ecr-login` is available in GitLab Runner's `$PATH`.
|
1. Make sure `docker-credential-ecr-login` is available in GitLab Runner's `$PATH`.
|
||||||
|
|
||||||
1. Make GitLab Runner use it. There are two ways to accomplish this. Either:
|
1. Make GitLab Runner use it. There are two ways to accomplish this. Either:
|
||||||
|
|
||||||
- Create a [variable](../variables/README.md#gitlab-cicd-environment-variables)
|
- Create a [variable](../variables/README.md#gitlab-cicd-environment-variables)
|
||||||
`DOCKER_AUTH_CONFIG` with the content of the
|
`DOCKER_AUTH_CONFIG` with the content of the
|
||||||
Docker configuration file as the value:
|
Docker configuration file as the value:
|
||||||
|
|
|
@ -42,6 +42,7 @@ project:
|
||||||
```
|
```
|
||||||
https://gitlab.com/gitlab-examples/maven/simple-maven-dep.git
|
https://gitlab.com/gitlab-examples/maven/simple-maven-dep.git
|
||||||
```
|
```
|
||||||
|
|
||||||
1. Click **Create project**
|
1. Click **Create project**
|
||||||
|
|
||||||
This application is nothing more than a basic class with a stub for a JUnit based test suite.
|
This application is nothing more than a basic class with a stub for a JUnit based test suite.
|
||||||
|
@ -190,6 +191,7 @@ We'll use again a Maven app that can be cloned from our example project:
|
||||||
```
|
```
|
||||||
https://gitlab.com/gitlab-examples/maven/simple-maven-app.git
|
https://gitlab.com/gitlab-examples/maven/simple-maven-app.git
|
||||||
```
|
```
|
||||||
|
|
||||||
1. Click **Create project**
|
1. Click **Create project**
|
||||||
|
|
||||||
This one is a simple app as well. If you look at the `src/main/java/com/example/app/App.java`
|
This one is a simple app as well. If you look at the `src/main/java/com/example/app/App.java`
|
||||||
|
|
|
@ -204,12 +204,11 @@ when running our Phoenix in our `localhost`.
|
||||||
- Create an empty file named `.gitkeep` into `hello_gitlab_ci/priv/repo/migrations`
|
- Create an empty file named `.gitkeep` into `hello_gitlab_ci/priv/repo/migrations`
|
||||||
|
|
||||||
As our project is still fresh, we don't have any data on our database, so, the `migrations`
|
As our project is still fresh, we don't have any data on our database, so, the `migrations`
|
||||||
directory will be empty.
|
directory will be empty.
|
||||||
Without `.gitkeep`, git will not upload this empty directory and we'll got an error when running our
|
Without `.gitkeep`, git will not upload this empty directory and we'll got an error when running our
|
||||||
test on GitLab.
|
test on GitLab.
|
||||||
|
|
||||||
> **Note:**
|
> **Note:** If we add a folder via the GitLab UI, GitLab itself will add the `.gitkeep` to that new dir.
|
||||||
If we add a folder via the GitLab UI, GitLab itself will add the `.gitkeep` to that new dir.
|
|
||||||
|
|
||||||
Now, let's run a local test and see if everything we did didn't break anything.
|
Now, let's run a local test and see if everything we did didn't break anything.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue