Skip to content

Commit

Permalink
GITBOOK-45: Add note about platform
Browse files Browse the repository at this point in the history
  • Loading branch information
kenrogers authored and gitbook-bot committed Mar 13, 2024
1 parent 706fa44 commit 3c5bd98
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions nakamoto-upgrade/running-a-signer.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,7 @@ You can run the signer as a Docker container using the `blockstack/stacks-core`
* You’ll need a volume with at least a few GB of available storage that contains the folder your `db_path` is in. In the above example, that would be /var
* You’ll need to include your `signer-config.toml` file

An example command for running the Docker image with ”`docker run`”:

Be sure to remove the comments before running, these are just for illustrative purposes.
An example command for running the Docker image with ”`docker run`” (be sure to remove the comments before running):

```bash
docker run -d \
Expand All @@ -68,6 +66,12 @@ docker run -d \
--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.

For example, if you are running on M1 Mac, you would add `--platform=limux/amd64` to the below command.
{% endhint %}

Or, with a custom Dockerfile:

```docker
Expand Down

0 comments on commit 3c5bd98

Please sign in to comment.