17f7f60d77
Use registry example from golem repository. Use the golem test runner for the docker integration environment Signed-off-by: Derek McGowan <derek@mcgstyle.net> (github: dmcgowan)
8 lines
262 B
Text
8 lines
262 B
Text
client_max_body_size 0;
|
|
chunked_transfer_encoding on;
|
|
location /v2/ {
|
|
auth_basic "registry.localhost";
|
|
auth_basic_user_file test.passwd;
|
|
add_header 'Docker-Distribution-Api-Version' 'registry/2.0' always;
|
|
include docker-registry-v2.conf;
|
|
}
|