-
Notifications
You must be signed in to change notification settings - Fork 134
/
config.yml
28 lines (27 loc) · 912 Bytes
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Default values for yml config
registry:
# Docker registry url
url: 'http://localhost:5000/v2'
# web registry context path
# empty string for root context, /app to make web registry accessible on http://host/app
context_path: ''
# Trust any SSL certificate when connecting to registry
trust_any_ssl: false
# base64 encoded token for basic authentication
basic_auth: ''
# To allow image delete, should be false
readonly: true
# Docker registry fqdn
name: 'localhost:5000'
# Authentication settings
auth:
# Enable authentication
enabled: false
# Allow registry anonymous access
# allow_anonymous: true # not implemented
# Token issuer
# should equals to auth.token.issuer of docker registry
issuer: 'test-issuer'
# Private key for token signing
# certificate used on auth.token.rootcertbundle should signed by this key
key: /config/auth.key