Skip to content

Commit

Permalink
GITBOOK-50: Fix typo and add backtrace flag
Browse files Browse the repository at this point in the history
  • Loading branch information
kenrogers authored and gitbook-bot committed Mar 14, 2024
1 parent 0cf9772 commit 8a3d936
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion nakamoto-upgrade/running-a-signer.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,16 @@ docker run -d \
-v ./signer-config.toml:/config.toml \ # your config file, make sure you are in the same directory
-v data_folder:/var \ # your data volume
-p 30000:30000
-e RUST_BACKTRACE=full \
-e BLOCKSTACK_DEBUG=0 \
blockstack/stacks-core:next \ # the docker image, currently tagged as `next`
stacks-signer run \
--config /config.toml \
--reward-cycle 1
```

{% hint style="info" %}
If you get an error saying that the manifest cannot be found, you are probably running on system architeecture other than x64 arch. Since you are using a PR release (`next`) you'll need to specify your platform with the `--platform` flag.
If you get an error saying that the manifest cannot be found, you are probably running on system architecture other than x64 arch. Since you are using a PR release (`next`) you'll need to specify your platform with the `--platform` flag.

For example, if you are running on M1 Mac, you would add `--platform=linux/amd64` to the above command.
{% endhint %}
Expand Down Expand Up @@ -169,6 +171,7 @@ docker run -d \
-v data_folder:/var/data \ # your data volume
-p 20443:20443 \
-p 20444:20444 \
-e RUST_BACKTRACE=full \
blockstack/stacks-core:next \ # the docker image, currently tagged as `next`
stacks-node start --config config.toml
```
Expand Down

0 comments on commit 8a3d936

Please sign in to comment.