104 lines
2.0 KiB
Plaintext
104 lines
2.0 KiB
Plaintext
# Service name
|
|
#
|
|
SERVICE_NAME=gitlab-test
|
|
|
|
# Container names
|
|
# Summary container name in docker-compose.yml will be "${SERVICE_NAME}_${CONTAINER_NAME-*}"
|
|
#
|
|
CONTAINER_NAME_GITLAB=server
|
|
CONTAINER_NAME_PGSQL=pgsql
|
|
CONTAINER_NAME_REDIS=redis
|
|
CONTAINER_NAME_REGISTRY=registry
|
|
CONTAINER_NAME_RUNNER=runner
|
|
|
|
# Docker images
|
|
#
|
|
DOCKER_IMAGE_GITLAB=sameersbn/gitlab:latest
|
|
DOCKER_IMAGE_PGSQL=sameersbn/postgresql:latest
|
|
DOCKER_IMAGE_REDIS=sameersbn/redis:latest
|
|
DOCKER_IMAGE_REGISTRY=registry:latest
|
|
DOCKER_IMAGE_RUNNER=hub.realmanual.ru/pub/gitlab-runner
|
|
|
|
# System
|
|
#
|
|
TZ=UTC
|
|
GITLAB_TIMEZONE=Asia/Novosibirsk
|
|
|
|
# Gitlab domain name
|
|
#
|
|
GITLAB_HOST=
|
|
REGISTRY_HOST=
|
|
|
|
GITLAB_SSH_PORT=10023
|
|
|
|
GITLAB_ROOT_EMAIL=
|
|
GITLAB_ROOT_PASSWORD=
|
|
|
|
# LDAP settings
|
|
LDAP_ENABLED=false
|
|
LDAP_LABEL=LDAP
|
|
LDAP_HOST=id1.bildme.ru
|
|
LDAP_PORT=636
|
|
LDAP_UID=uid
|
|
LDAP_METHOD=simple_tls
|
|
LDAP_VERIFY_SSL=true
|
|
LDAP_ACTIVE_DIRECTORY=false
|
|
LDAP_BASE=cn=users,cn=accounts,dc=bildme,dc=ru
|
|
LDAP_USER_FILTER=(&(objectClass=posixaccount)(memberOf=cn=gitlab,cn=groups,cn=accounts,dc=bildme,dc=ru))
|
|
LDAP_BIND_DN=uid=binddn,cn=sysaccounts,cn=etc,dc=bildme,dc=ru
|
|
LDAP_PASS=
|
|
|
|
# SMTP settings
|
|
SMTP_ENABLED=true
|
|
SMTP_HOST=smtp-pulse.com
|
|
SMTP_PORT=587
|
|
SMTP_STARTTLS=true
|
|
SMTP_AUTHENTICATION=login
|
|
SMTP_USER=
|
|
SMTP_PASS=
|
|
|
|
GITLAB_EMAIL_REPLY_TO=
|
|
GITLAB_EMAIL=
|
|
|
|
# Pages
|
|
GITLAB_PAGES_ENABLED=false
|
|
|
|
# Storage Minio
|
|
REGISTRY_STORAGE_S3_REGIONENDPOINT=https://s3-nsk.amegahost.ru
|
|
REGISTRY_STORAGE_S3_REGION=ru-nsk
|
|
REGISTRY_STORAGE_S3_BUCKET=gitlab-storage
|
|
REGISTRY_STORAGE_S3_ACCESSKEY=
|
|
REGISTRY_STORAGE_S3_SECRETKEY=
|
|
|
|
# DB credentials
|
|
#
|
|
DB_USER=gitlab
|
|
DB_PASS=
|
|
DB_NAME=gitlab_production
|
|
|
|
# Container data path on the host
|
|
# Summary container data path will be "${SERVICE_DATA}/${SERVICE_NAME}"
|
|
#
|
|
SERVICE_DATA=./data
|
|
|
|
# Gitlab runner token
|
|
#
|
|
RUNNER_TOKEN=
|
|
|
|
# Private CI IP
|
|
#
|
|
#CI_SERVER_LOCAL_IP=10.0.0.31
|
|
|
|
GITLAB_SECRETS_DB_KEY_BASE=
|
|
GITLAB_SECRETS_SECRET_KEY_BASE=
|
|
GITLAB_SECRETS_OTP_KEY_BASE=
|
|
|
|
# Runner on the same host with gitlab
|
|
#
|
|
CI_SERVER_WITH_RUNNER=true
|
|
|
|
# Network names
|
|
#
|
|
SERVICE_NETWORK=gitlab-net
|
|
WEBPROXY_NETWORK=webproxy
|