From 2de29fb0ff205348840f8de912838f688e7ab6dd Mon Sep 17 00:00:00 2001 From: prames <134806363+0xprames@users.noreply.github.com> Date: Sun, 24 Sep 2023 16:15:48 +0530 Subject: [PATCH] (chore) fix reth book dockercmd with correct datadir path for volume (#4753) --- book/installation/docker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/installation/docker.md b/book/installation/docker.md index 422e69203..ebec5fc9e 100644 --- a/book/installation/docker.md +++ b/book/installation/docker.md @@ -61,7 +61,7 @@ To run Reth with Docker, run: ```bash docker run \ - -v rethdata:/root/.local/share/reth/db \ + -v rethdata:/root/.local/share/reth/mainnet/db \ -d \ -p 9001:9001 \ -p 30303:30303 \