Skip to content

Instantly share code, notes, and snippets.

@jaonoctus
Created April 11, 2022 22:10
Show Gist options
  • Save jaonoctus/745f4f84957cd83797d2b753ee3499f5 to your computer and use it in GitHub Desktop.
Save jaonoctus/745f4f84957cd83797d2b753ee3499f5 to your computer and use it in GitHub Desktop.
#!/bin/bash
CONTAINER_NAME=ez-testnet
CONTAINER_FOLDER=$(pwd)/data
docker run -it --rm \
--name $CONTAINER_NAME \
-v $CONTAINER_FOLDER:/data \
-e TOR=0 \
-e EXPLORER=1 \
-p 3002:3002 \
-e TRUSTED_FASTSYNC=0 \
-e SPECTER=1 \
-p 25441:25441 \
-e BITCOIND_TOR=0 \
-e BWT=0 \
-e NETWORK=testnet \
-e PRUNE=0 \
-e TXINDEX=1 \
jaonoctus/eznode:latest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment