Commit 6af9b5eb authored by GitLab Bot's avatar GitLab Bot

Automatic merge of gitlab-org/gitlab-ce master

parents 33feee90 4f447e0f
<script src="https://unpkg.com/mermaid@8.0.0/dist/mermaid.min.js"></script>
<script>mermaid.initialize({startOnLoad:true});</script>
# GitLab Architecture Overview # GitLab Architecture Overview
## Software delivery ## Software delivery
...@@ -213,7 +210,7 @@ To serve repositories over SSH there's an add-on application called gitlab-shell ...@@ -213,7 +210,7 @@ To serve repositories over SSH there's an add-on application called gitlab-shell
### Components ### Components
<div class="mermaid"> ```mermaid
graph TB graph TB
HTTP[HTTP/HTTPS] -- TCP 80, 443 --> NGINX(NGINX) HTTP[HTTP/HTTPS] -- TCP 80, 443 --> NGINX(NGINX)
...@@ -313,7 +310,7 @@ class Alertmanager defaultoff ...@@ -313,7 +310,7 @@ class Alertmanager defaultoff
class SMTP defaultoff class SMTP defaultoff
class ObjectStorage defaultoff class ObjectStorage defaultoff
class Geo defaultoff class Geo defaultoff
</div> ```
**Legend**: **Legend**:
......
...@@ -45,6 +45,22 @@ For other distributions, follow the instructions in PostgreSQL's ...@@ -45,6 +45,22 @@ For other distributions, follow the instructions in PostgreSQL's
[download page](https://www.postgresql.org/download/) to add their repository [download page](https://www.postgresql.org/download/) to add their repository
and then install `pgloader`. and then install `pgloader`.
If you are migrating to a Docker based installation, you will need to install
pgloader within the container as it is not included in the container image.
1. Start a shell session in the context of the running container:
``` bash
docker exec -it gitlab bash
```
1. Install pgloader:
``` bash
apt-get update
apt-get -y install pgloader
```
## Omnibus GitLab installations ## Omnibus GitLab installations
For [Omnibus GitLab packages](https://about.gitlab.com/install/), you'll first For [Omnibus GitLab packages](https://about.gitlab.com/install/), you'll first
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment