2023-12-28 00:28:30 +01:00
|
|
|
version: '3.6'
|
|
|
|
services:
|
|
|
|
web:
|
|
|
|
image: 'gitlab/gitlab-ee:latest'
|
|
|
|
restart: always
|
|
|
|
hostname: '{{domain}}'
|
|
|
|
environment:
|
|
|
|
GITLAB_OMNIBUS_CONFIG: |
|
|
|
|
external_url 'https://{{domain}}'
|
2023-12-28 12:33:48 +01:00
|
|
|
postgresql['enable'] = false
|
2023-12-28 00:28:30 +01:00
|
|
|
gitlab_rails['gitlab_shell_ssh_port'] = {{ssh_port}}
|
2023-12-28 12:33:48 +01:00
|
|
|
gitlab_rails['db_adapter'] = 'postgresql'
|
|
|
|
gitlab_rails['db_encoding'] = 'utf8'
|
|
|
|
gitlab_rails['db_host'] = '{{database_host}}'
|
|
|
|
gitlab_rails['db_port'] = 5432
|
|
|
|
gitlab_rails['db_username'] = '{{database_username}}'
|
|
|
|
gitlab_rails['db_password'] = '{{database_password}}'
|
|
|
|
gitlab_rails['db_database'] = "{{database_databasename}}"
|
|
|
|
nginx['listen_port'] = 80
|
|
|
|
nginx['listen_https'] = false
|
|
|
|
|
2023-12-28 18:30:31 +01:00
|
|
|
gitlab_rails['initial_root_password'] = "{{gitlab_initial_root_password}}"
|
|
|
|
|
2023-12-28 19:44:28 +01:00
|
|
|
redis['enable'] = false
|
|
|
|
gitlab_rails['redis_host'] = 'redis'
|
|
|
|
gitlab_rails['redis_port'] = '6379'
|
2023-12-28 00:28:30 +01:00
|
|
|
ports:
|
|
|
|
- "127.0.0.1:{{http_port}}:80"
|
|
|
|
- "{{ssh_port}}:22"
|
|
|
|
volumes:
|
|
|
|
- 'config:/etc/gitlab'
|
|
|
|
- 'logs:/var/log/gitlab'
|
|
|
|
- 'data:/var/opt/gitlab'
|
|
|
|
shm_size: '256m'
|
2023-12-28 18:30:31 +01:00
|
|
|
depends_on:
|
2023-12-31 11:14:18 +01:00
|
|
|
{% if not ( enable_central_database | lower | bool ) %}
|
2023-12-28 18:30:31 +01:00
|
|
|
database:
|
|
|
|
condition: service_healthy
|
2023-12-31 11:14:18 +01:00
|
|
|
{% endif %}
|
2023-12-28 19:44:28 +01:00
|
|
|
redis:
|
2023-12-28 00:28:30 +01:00
|
|
|
|
2023-12-28 19:44:28 +01:00
|
|
|
{% include 'templates/docker-redis-service.yml.j2' %}
|
|
|
|
|
2023-12-31 11:14:18 +01:00
|
|
|
{% if not ( enable_central_database | lower | bool ) %}
|
|
|
|
{% include 'templates/docker-postgres-service.yml.j2' %}
|
|
|
|
{% endif %}
|
|
|
|
|
2023-12-28 00:28:30 +01:00
|
|
|
volumes:
|
2023-12-31 11:14:18 +01:00
|
|
|
redis:
|
2023-12-28 12:33:48 +01:00
|
|
|
config:
|
|
|
|
logs:
|
|
|
|
data:
|
2023-12-31 11:14:18 +01:00
|
|
|
{% if not ( enable_central_database | lower | bool ) %}
|
|
|
|
database:
|
|
|
|
{% endif %}
|