This repository was archived by the owner on Sep 12, 2018. It is now read-only.
File tree 1 file changed +11
-5
lines changed
1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change 1
-
1
+ # The `common' part is automatically included (and possibly overriden by all
2
+ # other flavors)
2
3
common :
3
4
s3_access_key : REPLACEME
4
5
s3_secret_key : REPLACEME
5
6
s3_bucket : REPLACEME
6
7
8
+ # This is the default configuration when no flavor is specified
7
9
dev :
8
10
storage : local
9
11
storage_path : /tmp/registry
10
12
loglevel : debug
11
13
14
+ # To specify another flavor, set the environment variable SETTINGS_FLAVOR
15
+ # $ export SETTINGS_FLAVOR=prod
12
16
prod :
17
+ # The standalone option allows to dedicate authentication and namespacing
18
+ # to the main Index (https://index.docker.io). Enabling standalone (default)
19
+ # also disables authentication
20
+ standalone : False
13
21
storage : s3
14
22
storage_path : /prod
23
+ # Enabling this options makes the Registry send an email on each code Exception
15
24
email_exceptions :
16
25
smtp_host : REPLACEME
17
26
smtp_login : REPLACEME
18
27
smtp_password : REPLACEME
19
28
20
29
21
30
31
+ # This flavor is automatically used by unit tests
22
32
test :
23
33
storage : local
24
34
storage_path : /tmp/test
25
-
26
- standalone :
27
- storage : local
28
- storage_path : /tmp/registry
You can’t perform that action at this time.
0 commit comments