From 546ee7af5e3876e9f12888c75949d2c4de271afd Mon Sep 17 00:00:00 2001 From: Flow86 <656249+Flow86@users.noreply.github.com> Date: Mon, 25 Nov 2024 10:13:21 +0100 Subject: [PATCH] docs: fix wrong local volume paths for docker volumes docker expects to have absolute paths for local volume definitions --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9b68f20..646cb39 100644 --- a/README.md +++ b/README.md @@ -91,8 +91,8 @@ You can also use the `/opt/paessler/share/scripts` volume for the scripts of the ```sh docker run -it \ --network bridge \ - -v ./scripts:/opt/paessler/share/scripts:ro \ - -v ./config:/config \ + -v $(pwd)/scripts:/opt/paessler/share/scripts:ro \ + -v $(pwd)/config:/config \ --cap-add NET_ADMIN \ --cap-add NET_RAW \ paessler/multi-platform-probe:latest