From 5488acb59df63992b45db3c7783995e8bd2e7185 Mon Sep 17 00:00:00 2001 From: asonix Date: Tue, 3 Jan 2023 15:17:56 -0600 Subject: [PATCH] Fix docker volume mount in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e0f8e2..ac22793 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ _A simple and efficient activitypub relay_ If running docker, you can start the relay with the following command: ``` $ sudo docker run --rm -it \ - -v "./:/mnt/" \ + -v "$(pwd):/mnt/" \ -e ADDR=0.0.0.0 \ -e SLED_PATH=/mnt/sled/db-0.34 \ -p 8080:8080 \