mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-27 13:36:06 +10:00
17 lines
357 B
Ruby
17 lines
357 B
Ruby
# Docker options
|
|
## Prevent Postgres from trying to allocate 25% of total memory
|
|
postgresql['shared_buffers'] = '1MB'
|
|
|
|
## PIN users to UIDs
|
|
user['uid'] = 998
|
|
user['gid'] = 998
|
|
postgresql['uid'] = 996
|
|
postgresql['gid'] = 996
|
|
redis['uid'] = 997
|
|
redis['gid'] = 997
|
|
web_server['uid'] = 999
|
|
web_server['gid'] = 999
|
|
gitlab_ci['uid'] = 995
|
|
gitlab_ci['gid'] = 995
|
|
|