From 71187bc4307fb7499717fe5fab1f7f555af9f4cd Mon Sep 17 00:00:00 2001 From: Alessandro Ros Date: Wed, 6 Nov 2024 15:17:07 +0100 Subject: [PATCH] remove redundant curly brackets (#3938) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2420aac3b2a..62c32d3c0b7 100644 --- a/README.md +++ b/README.md @@ -1260,7 +1260,7 @@ There are 3 ways to change the configuration: * available in the root folder of the Docker image (`/mediamtx.yml`); it can be overridden in this way: ``` - docker run --rm -it --network=host -v "${PWD}/mediamtx.yml:/mediamtx.yml:ro" bluenviron/mediamtx + docker run --rm -it --network=host -v "$PWD/mediamtx.yml:/mediamtx.yml:ro" bluenviron/mediamtx ``` The configuration can be changed dynamically when the server is running (hot reloading) by writing to the configuration file. Changes are detected and applied without disconnecting existing clients, whenever it's possible.