Skip to content

Commit

Permalink
docs: fix wrong local volume paths for docker volumes
Browse files Browse the repository at this point in the history
docker expects to have absolute paths for local volume definitions
  • Loading branch information
Flow86 committed Nov 25, 2024
1 parent dfdc14a commit 546ee7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 546ee7a

Please sign in to comment.