From f5fb200543518faf1c9f1d3b1fe32034d65c362b Mon Sep 17 00:00:00 2001 From: Julien Delavisse Date: Fri, 15 Nov 2024 11:13:11 +0100 Subject: [PATCH] fix(examples): inconsistency of htpasswd file names with docker compose.yml (read-only-auth example) --- examples/read-only-auth/docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/read-only-auth/docker-compose.yml b/examples/read-only-auth/docker-compose.yml index c83bbce..2595373 100644 --- a/examples/read-only-auth/docker-compose.yml +++ b/examples/read-only-auth/docker-compose.yml @@ -17,8 +17,8 @@ services: - SINGLE_REGISTRY=true volumes: - ./nginx.conf:/etc/nginx/conf.d/default.conf - - ./read-write.htpasswd:/etc/nginx/auth/write.htpasswd:ro - - ./read-only.htpasswd:/etc/nginx/auth/read.htpasswd:ro + - ./write.htpasswd:/etc/nginx/auth/write.htpasswd:ro + - ./read.htpasswd:/etc/nginx/auth/read.htpasswd:ro depends_on: - registry networks: