Browse Source

linting issues

feat/stacks-js-updates
wileyj 5 years ago
committed by Alexander Graebe
parent
commit
70c1e6e7b7
  1. 38
      src/pages/stacks-blockchain/docker.md

38
src/pages/stacks-blockchain/docker.md

@ -12,29 +12,33 @@ images:
--- ---
## Introduction: ## Introduction:
This tutorial will walk you through the following steps: This tutorial will walk you through the following steps:
- Run the node with Docker - Run the node with Docker
- Mine Stacks token with Docker - Mine Stacks token with Docker
## Requirements: ## Requirements:
- a computer - a computer
- [Docker](https://docs.docker.com/get-docker/) - [Docker](https://docs.docker.com/get-docker/)
- a keyboard and monitor - a keyboard and monitor
- `jq` binary (if not installed, run the commands **without** `| jq`) - `jq` binary (if not installed, run the commands **without** `| jq`)
- dedicated directory to keep the config file(s) - dedicated directory to keep the config file(s)
- i.e. for *Nix, `$HOME/stacks`: `mkdir -p $HOME/stacks` - i.e. for \*Nix, `$HOME/stacks`: `mkdir -p $HOME/stacks`
### Create Seed ### Create Seed
*Note: following command can take a few minutes to install dependencies and output data*
_Note: following command can take a few minutes to install dependencies and output data_
Generate keychain: Generate keychain:
```bash ```bash
docker run -i node:alpine npx blockstack-cli@1.1.0-beta.1 make_keychain -t | jq docker run -i node:alpine npx blockstack-cli@1.1.0-beta.1 make_keychain -t | jq
``` ```
Example Output (_`EACCES` error can be ignored_):
Example Output (*`EACCES` error can be ignored*):
```json ```json
{ {
"mnemonic": "exhaust spin topic distance hole december impulse gate century absent breeze ostrich armed clerk oak peace want scrap auction sniff cradle siren blur blur", "mnemonic": "exhaust spin topic distance hole december impulse gate century absent breeze ostrich armed clerk oak peace want scrap auction sniff cradle siren blur blur",
@ -47,16 +51,18 @@ Example Output (*`EACCES` error can be ignored*):
} }
``` ```
### Request BTC from the faucet ### Request BTC from the faucet
*replace 'btc_address' with `btcAddress` property from your keychain*
_replace 'btc_address' with `btcAddress` property from your keychain_
Request BTC: Request BTC:
```bash ```bash
curl -XPOST "https://stacks-node-api.blockstack.org/extended/v1/faucets/btc?address=<btc_address>" | jq curl -XPOST "https://stacks-node-api.blockstack.org/extended/v1/faucets/btc?address=<btc_address>" | jq
``` ```
Example Output: Example Output:
```json ```json
{ {
"txid": "1970274d25f7ecb7f4ac1f992059d52fd9c393fdc1610b58ba1d279b7f6f8a0e", "txid": "1970274d25f7ecb7f4ac1f992059d52fd9c393fdc1610b58ba1d279b7f6f8a0e",
@ -65,15 +71,16 @@ Example Output:
} }
``` ```
## Miner ## Miner
### Config ### Config
https://docs.blockstack.org/mining#running-a-miner https://docs.blockstack.org/mining#running-a-miner
To use the following config, you'll need to make a new `seed`, which you should have already generated from the above section. To use the following config, you'll need to make a new `seed`, which you should have already generated from the above section.
**Config.toml**: **Config.toml**:
```toml ```toml
[node] [node]
working_dir = "/root/stacks-node/current" working_dir = "/root/stacks-node/current"
@ -112,9 +119,11 @@ Copy/Paste the above (with your specific `seed`) as `$HOME/stacks/Config.toml`
You should now have a miner config located at `$HOME/stacks/Config.toml` You should now have a miner config located at `$HOME/stacks/Config.toml`
### Commands ### Commands
*Note*: When these containers are stopped, all data is deleted. To persist the data across restarts, either use a docker bind-mount, or remove the `--rm` from the below commands.
_Note_: When these containers are stopped, all data is deleted. To persist the data across restarts, either use a docker bind-mount, or remove the `--rm` from the below commands.
**Without** DEBUG output: **Without** DEBUG output:
```bash ```bash
docker run -d \ docker run -d \
--name stacks_miner \ --name stacks_miner \
@ -127,6 +136,7 @@ docker run -d \
``` ```
**With** DEBUG output: **With** DEBUG output:
```bash ```bash
docker run -d \ docker run -d \
--name stacks_miner \ --name stacks_miner \
@ -141,19 +151,21 @@ docker run -d \
``` ```
**Logs**: **Logs**:
```bash ```bash
docker logs -f stacks_miner docker logs -f stacks_miner
``` ```
## Follower ## Follower
https://docs.blockstack.org/stacks-blockchain/running-testnet-node
https://docs.blockstack.org/stacks-blockchain/running-testnet-node
### Commands ### Commands
*Note*: When these containers are stopped, all data is deleted. To persist the data across restarts, either use a docker bind-mount, or remove the `--rm` from the below commands.
_Note_: When these containers are stopped, all data is deleted. To persist the data across restarts, either use a docker bind-mount, or remove the `--rm` from the below commands.
**Without** DEBUG output: **Without** DEBUG output:
```bash ```bash
docker run -d \ docker run -d \
--name stacks_follower \ --name stacks_follower \
@ -165,6 +177,7 @@ docker run -d \
``` ```
**With** DEBUG output: **With** DEBUG output:
```bash ```bash
docker run -d \ docker run -d \
--name stacks_follower \ --name stacks_follower \
@ -178,6 +191,7 @@ docker run -d \
``` ```
**Logs**: **Logs**:
```bash ```bash
docker logs -f stacks_follower docker logs -f stacks_follower
``` ```

Loading…
Cancel
Save