Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Binance Smart Chain node Docker image

## QuickStart
Create /data folder on root
cd /data
mkdir bsc
cd bsc

```
docker run -d -v /data/bsc:/root --name binance-smart-chain-node \
Expand All @@ -27,11 +31,12 @@ docker logs -f binance-smart-chain-node
* IPC (unix socket) at /data/bsc/.ethereum/geth.ipc

Test it using [geth_linux](https://github.com/binance-chain/bsc/releases) binary:
chmod+x geth_linux

```
geth_linux attach http://localhost:8545
geth_linux attach ws://localhost:8546
geth_linux attach /data/bsc/.ethereum/geth.ipc
./geth_linux attach http://localhost:8545
./geth_linux attach ws://localhost:8546
./geth_linux attach /data/bsc/.ethereum/geth.ipc
# Last one needs root privileges
```

Expand Down