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/knowledge-base/git/gitlab/integration.md
+26-2Lines changed: 26 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: "Integration"
3
-
description: "Connect GitLab repositories to Coolify with deploy keys, automatic webhooks, and merge request deployments for CI/CD automation"
3
+
description: "Connect GitLab repositories to Coolify with deploy keys, Gitlab container registry with deploy token, automatic webhooks, and merge request deployments for CI/CD automation"
4
4
---
5
5
6
6
# GitLab Integration
@@ -42,6 +42,30 @@ You need to use the SSH URL, so the one that starts with `git@`.
42
42
43
43
4. That's it! Coolify will automatically pull the latest version of your repository and deploy it.
44
44
45
+
## Public Container Registry
46
+
47
+
You can use public container registry without any additional setup.
48
+
49
+
1. Select the `Docker Image` option in the Coolify when you create a new resource.
50
+
2. Add your public container registry URL and also the tag to the input field, for example: `registry.gitlab.com/username/repository:latest`.
51
+
3. Press the `Deploy` button.
52
+
4. That's it! Coolify will automatically pull the latest version of your container registry and deploy it.
53
+
54
+
## Private Container Registry
55
+
56
+
Private container registry require a few more steps to setup.
57
+
58
+
1. Add a `Deploy Token` in your GitLab repository in the `Settings` / `Repository` / `Deploy Token` with scope `read_registry`. This step will generate credentials `username` and `token`
59
+
2. login docker with that credentials in your coolify server
0 commit comments