mirror of
https://github.com/sameersbn/docker-gitlab.git
synced 2025-12-08 17:36:24 +00:00
25 lines
553 B
YAML
25 lines
553 B
YAML
#
|
|
# PRODUCTION (here: non-decomposed database)
|
|
#
|
|
production:
|
|
main:
|
|
adapter: postgresql
|
|
encoding: {{DB_ENCODING}}
|
|
database: {{DB_NAME}}
|
|
host: {{DB_HOST}}
|
|
port: {{DB_PORT}}
|
|
username: {{DB_USER}}
|
|
password: "{{DB_PASS}}"
|
|
pool: {{DB_POOL}}
|
|
prepared_statements: {{DB_PREPARED_STATEMENTS}}
|
|
ci:
|
|
adapter: postgresql
|
|
encoding: {{DB_ENCODING}}
|
|
database: {{DB_NAME}}
|
|
database_tasks: false
|
|
host: {{DB_HOST}}
|
|
port: {{DB_PORT}}
|
|
username: {{DB_USER}}
|
|
password: "{{DB_PASS}}"
|
|
pool: {{DB_POOL}}
|