a83eba28f9
This provides a basic registry implementation. See http://lists.zuul-ci.org/pipermail/zuul-discuss/2019-September/001009.html for more information. Change-Id: Ic0807edf7c9e3e6d6d42f070e7efc44b425ff372
24 lines
461 B
YAML
24 lines
461 B
YAML
registry:
|
|
address: '127.0.0.1'
|
|
port: 9000
|
|
tls-cert: /path/to/cert.pem
|
|
tls-key: /path/to/cert.key
|
|
#shadow:
|
|
# docker.io:
|
|
# hostname: local-docker-mirror.example.com
|
|
# port: 443
|
|
users:
|
|
- name: testuser
|
|
pass: testpass
|
|
access: write
|
|
- name: anonymous
|
|
pass: ''
|
|
access: read
|
|
xstorage:
|
|
driver: swift
|
|
cloud: registry
|
|
container: test_registry
|
|
storage:
|
|
driver: filesystem
|
|
root: /tmp/storage
|