mirror of
https://github.com/sameersbn/docker-gitlab.git
synced 2026-01-18 13:58:25 +00:00
Add GITLAB_DEFAULT_THEME
This commit is contained in:
parent
0de94d23d1
commit
91e05e4489
@ -26,6 +26,8 @@ production: &base
|
||||
# 1. GitLab app settings
|
||||
# ==========================
|
||||
|
||||
|
||||
|
||||
## GitLab settings
|
||||
gitlab:
|
||||
## Web server settings (note: host is the FQDN, do not include http://)
|
||||
@ -75,13 +77,18 @@ production: &base
|
||||
default_can_create_group: {{GITLAB_CREATE_GROUP}} # default: true
|
||||
username_changing_enabled: {{GITLAB_USERNAME_CHANGE}} # default: true - User can change her username/namespace
|
||||
## Default theme ID
|
||||
## 1 - Graphite
|
||||
## 2 - Charcoal
|
||||
## 3 - Green
|
||||
## 4 - Gray
|
||||
## 5 - Violet
|
||||
## 6 - Blue
|
||||
# default_theme: 2 # default: 2
|
||||
## 1 - Indigo
|
||||
## 2 - Dark
|
||||
## 3 - Light
|
||||
## 4 - Blue
|
||||
## 5 - Green
|
||||
## 6 - Light Indigo
|
||||
## 7 - Light Blue
|
||||
## 8 - Light Green
|
||||
## 9 - Red
|
||||
## 10 - Light Red
|
||||
default_theme: {{GITLAB_DEFAULT_THEME}}
|
||||
|
||||
|
||||
# Enable or disable user signups (first run only)
|
||||
signup_enabled: {{GITLAB_SIGNUP_ENABLED}}
|
||||
|
||||
@ -9,7 +9,7 @@ GITLAB_REPOS_DIR="${GITLAB_REPOS_DIR:-$GITLAB_DATA_DIR/repositories}"
|
||||
GITLAB_BUILDS_DIR="${GITLAB_BUILDS_DIR:-$GITLAB_DATA_DIR/builds}"
|
||||
GITLAB_DOWNLOADS_DIR="${GITLAB_DOWNLOADS_DIR:-$GITLAB_TEMP_DIR/downloads}"
|
||||
GITLAB_SHARED_DIR="${GITLAB_SHARED_DIR:-$GITLAB_DATA_DIR/shared}"
|
||||
|
||||
GITLAB_DEFAULT_THEME=${GITLAB_DEFAULT_THEME:-2}
|
||||
GITLAB_HTTPS=${GITLAB_HTTPS:-false}
|
||||
GITLAB_HOST=${GITLAB_HOST:-localhost}
|
||||
GITLAB_CI_HOST=${GITLAB_CI_HOST:-}
|
||||
|
||||
@ -1519,6 +1519,7 @@ configure_gitlab() {
|
||||
GITLAB_SIGNUP_ENABLED \
|
||||
GITLAB_PROJECTS_LIMIT \
|
||||
GITLAB_USERNAME_CHANGE \
|
||||
GITLAB_DEFAULT_THEME \
|
||||
GITLAB_CREATE_GROUP
|
||||
|
||||
gitlab_configure_database
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user