Skip to content
Snippets Groups Projects
Commit 9a44dd00 authored by void's avatar void
Browse files

explicit disable database #49

parent 9998c9bb
No related branches found
No related tags found
No related merge requests found
...@@ -792,6 +792,23 @@ registry['enable'] = true ...@@ -792,6 +792,23 @@ registry['enable'] = true
# registry['autoredirect'] = false # registry['autoredirect'] = false
# registry['compatibility_schema1_enabled'] = false # registry['compatibility_schema1_enabled'] = false
### Registry Database
### see https://gitlab.warpzone.ms/help/administration/packages/container_registry_metadata_database.md
registry['database'] = {
'enabled' => false,
'host' => 'localhost',
'port' => 5432,
'user' => 'registry-database-user',
'password' => 'registry-database-password',
'dbname' => 'registry-database-name',
'sslmode' => 'require',
'sslcert' => '/path/to/cert.pem',
'sslkey' => '/path/to/private.key',
'sslrootcert' => '/path/to/ca.pem'
}
### Registry backend storage ### Registry backend storage
###! Docs: https://docs.gitlab.com/ee/administration/packages/container_registry.html#configure-storage-for-the-container-registry ###! Docs: https://docs.gitlab.com/ee/administration/packages/container_registry.html#configure-storage-for-the-container-registry
# registry['storage'] = { # registry['storage'] = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment