From d0199422783f53cfb5c7fa801c5c11b852f219ea Mon Sep 17 00:00:00 2001 From: Chris C Date: Mon, 28 Sep 2020 12:50:22 -0400 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c760d1c0..8540417e 100644 --- a/README.md +++ b/README.md @@ -267,12 +267,12 @@ Other than using one of the examples provided in the `examples` folder, you can creating a configuration file - we'll call it `config.yaml` for this example - and running the following command: ``` -docker run -p 8080:8080 --mount type=bind,source="$(pwd)"/test.yaml,target=/config/config.yaml --name gatus twinproduction/gatus +docker run -p 8080:8080 --mount type=bind,source="$(pwd)"/config.yaml,target=/config/config.yaml --name gatus twinproduction/gatus ``` If you're on Windows, replace `"$(pwd)"` by the absolute path to your current directory, e.g.: ``` -docker run -p 8080:8080 --mount type=bind,source=E:/Go/src/github.com/TwinProduction/gatus/test.yaml,target=/config/config.yaml --name gatus twinproduction/gatus +docker run -p 8080:8080 --mount type=bind,source=C:/Users/Chris/Desktop/config.yaml,target=/config/config.yaml --name gatus twinproduction/gatus ``` ## Running the tests