From 85fabbbacebc63ea2938e160cf2679d91da36763 Mon Sep 17 00:00:00 2001 From: Julian Gruber Date: Wed, 5 Jun 2024 10:19:02 +0200 Subject: [PATCH 1/2] docs: add docker mount --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 553f7289..fa44d621 100644 --- a/README.md +++ b/README.md @@ -158,13 +158,15 @@ $ station --version ## Docker Deploy Station with [Docker](https://www.docker.com/). Please replace -`FIL_WALLET_ADDRESS`. +`FIL_WALLET_ADDRESS` and ensure the passed `state` folder is persisted across +machine restarts. ```bash $ docker run \ --name station \ --detach \ --env FIL_WALLET_ADDRESS=0x000000000000000000000000000000000000dEaD \ + -v ./state:/home/node/.local/state/ ghcr.io/filecoin-station/core ``` From 246c23e24b8163fac524ec4cf853a4d716b27cb6 Mon Sep 17 00:00:00 2001 From: Julian Gruber Date: Wed, 5 Jun 2024 07:06:14 -0700 Subject: [PATCH 2/2] docs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fa44d621..28b5877f 100644 --- a/README.md +++ b/README.md @@ -166,7 +166,7 @@ $ docker run \ --name station \ --detach \ --env FIL_WALLET_ADDRESS=0x000000000000000000000000000000000000dEaD \ - -v ./state:/home/node/.local/state/ + -v ./state:/home/node/.local/state/ ghcr.io/filecoin-station/core ```