From 45acc55bb91877e91199846428db67bc7540e641 Mon Sep 17 00:00:00 2001 From: Viorel Alexandrescu <147859592+viorel-alexandrescu@users.noreply.github.com> Date: Thu, 20 Feb 2025 15:54:56 +0200 Subject: [PATCH] Fix doc about config path when overriding I've made a small change in the docs regarding how to override the entire configuration via a .yml file. Apparently the path /etc/distribution/config.yml is not being picked up by the app when starting up. Signed-off-by: Viorel Alexandrescu <147859592+viorel-alexandrescu@users.noreply.github.com> --- docs/content/about/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/about/configuration.md b/docs/content/about/configuration.md index 1f83575d4..868c7ddde 100644 --- a/docs/content/about/configuration.md +++ b/docs/content/about/configuration.md @@ -67,7 +67,7 @@ specify it in the `docker run` command: ```bash $ docker run -d -p 5000:5000 --restart=always --name registry \ - -v `pwd`/config.yml:/etc/distribution/config.yml \ + -v `pwd`/config.yml:/etc/docker/registry/config.yml \ registry:2 ```