27 lines
		
	
	
		
			633 B
		
	
	
	
		
			YAML
		
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			633 B
		
	
	
	
		
			YAML
		
	
	
version: 0.1
 | 
						|
loglevel: debug
 | 
						|
storage:
 | 
						|
    filesystem:
 | 
						|
        rootdirectory: /tmp/registry-dev
 | 
						|
http:
 | 
						|
    addr: :5000
 | 
						|
    secret: asecretforlocaldevelopment
 | 
						|
    debug:
 | 
						|
        addr: localhost:5001
 | 
						|
notifications:
 | 
						|
    endpoints:
 | 
						|
        - name: local-8082
 | 
						|
          url: http://localhost:5003/callback
 | 
						|
          headers:
 | 
						|
             Authorization: [Bearer <an example token>]
 | 
						|
          timeout: 1s
 | 
						|
          threshold: 10
 | 
						|
          backoff: 1s
 | 
						|
          disabled: true
 | 
						|
        - name: local-8083
 | 
						|
          url: http://localhost:8083/callback
 | 
						|
          timeout: 1s
 | 
						|
          threshold: 10
 | 
						|
          backoff: 1s
 | 
						|
          disabled: true
 |