Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-01-30 18:09:15 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-01-30 18:09:15 +0300
commit536aa3a1f4b96abc4ca34489bf2cbe503afcded7 (patch)
tree88d08f7dfa29a32d6526773c4fe0fefd9f2bc7d1 /doc/administration/packages
parent50ae4065530c4eafbeb7c5ff2c462c48c02947ca (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/administration/packages')
-rw-r--r--doc/administration/packages/container_registry.md8
-rw-r--r--doc/administration/packages/index.md4
2 files changed, 6 insertions, 6 deletions
diff --git a/doc/administration/packages/container_registry.md b/doc/administration/packages/container_registry.md
index 3804319f60d..b325fc59469 100644
--- a/doc/administration/packages/container_registry.md
+++ b/doc/administration/packages/container_registry.md
@@ -169,7 +169,7 @@ If your certificate provider provides the CA Bundle certificates, append them to
Users should now be able to login to the Container Registry with their GitLab
credentials using:
-```bash
+```shell
docker login gitlab.example.com:4567
```
@@ -194,7 +194,7 @@ Let's assume that you want the container Registry to be accessible at
`/etc/gitlab/ssl/registry.gitlab.example.com.key` and make sure they have
correct permissions:
- ```bash
+ ```shell
chmod 600 /etc/gitlab/ssl/registry.gitlab.example.com.*
```
@@ -234,7 +234,7 @@ registry_nginx['ssl_certificate_key'] = "/etc/gitlab/ssl/certificate.key"
Users should now be able to login to the Container Registry using their GitLab
credentials:
-```bash
+```shell
docker login registry.gitlab.example.com
```
@@ -793,7 +793,7 @@ After adding the setting, [reconfigure GitLab](../restart_gitlab.md#omnibus-gitl
Use curl to request debug output from the debug server:
-```bash
+```shell
curl localhost:5001/debug/health
curl localhost:5001/debug/vars
```
diff --git a/doc/administration/packages/index.md b/doc/administration/packages/index.md
index 2d2a6f3de3a..421b70709b5 100644
--- a/doc/administration/packages/index.md
+++ b/doc/administration/packages/index.md
@@ -166,12 +166,12 @@ The processing will be done in a background worker and requires **no downtime**.
For Omnibus GitLab:
-```sh
+```shell
sudo gitlab-rake "gitlab:packages:migrate"
```
For installations from source:
-```bash
+```shell
RAILS_ENV=production sudo -u git -H bundle exec rake gitlab:packages:migrate
```