-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathgitlab-rc.json
More file actions
52 lines (52 loc) · 2.07 KB
/
gitlab-rc.json
File metadata and controls
52 lines (52 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"GitLab CE": {
"description": "Git repository hosting and collaboration.<p>Based on the <a href='https://hub.docker.com/r/gitlab/gitlab-ce' target='_blank'>official OCI image</a>, available for amd64 and arm64 architecture.</p>",
"version": "1.2",
"website": "https://about.gitlab.com/",
"icon": "https://about.gitlab.com/images/wordmark.png",
"more_info": "<p>Default username for your GitLab UI is<code>root</code>and password is<code>5iveL!fe</code></p><p>HTTPS is not enabled by defautt, please see: <a href='https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/doc/settings/nginx.md#enable-https'> https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/doc/settings/nginx.md#enable-https</a></p>",
"containers": {
"gitlab-ce": {
"image": "gitlab/gitlab-ce",
"launch_order": 1,
"ports": {
"22": {
"description": "GitLab SSH port.",
"label": "SSH Gitlab port [e.g. 2222]",
"host_default": 2222,
"protocol": "tcp"
},
"443": {
"description": "GitLab WebUI port. Not enabled in OCI image by default",
"label": "HTTPS WebUI port [e.g. 8443]",
"host_default": 8443,
"protocol": "tcp"
},
"80": {
"description": "GitLab WebUI port.",
"label": "HTTP WebUI port [e.g. 8080]",
"host_default": 8080,
"protocol": "tcp",
"ui": true
}
},
"volumes": {
"/etc/gitlab": {
"description": "Share for GitLab configuration.",
"label": "Config Storage [e.g. gitlab-config]"
},
"/var/log/gitlab": {
"description": "Share for GitLab log files.",
"label": "Config logs [e.g. gitlab-logs]",
"min_size": 1048576
},
"/var/opt/gitlab": {
"description": "Share for GitLab repositories.",
"label": "Repository Storage [e.g. gitlab-repos]",
"min_size": 1048576
}
}
}
}
}
}