good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit a268b656 authored by Alex Sharov's avatar Alex Sharov Committed by GitHub
Browse files

Fix docs (#826)

* fix docs
parent 794dd68a
No related branches found
No related tags found
No related merge requests found
......@@ -4,10 +4,10 @@ services:
turbo-geth:
build: ./../..
command: --nousb --metrics --metrics.expensive --pprof --pprofaddr=0.0.0.0 --pprofport=6060 --remote-db-listen-addr=0.0.0.0:9999
command: --nousb --metrics --metrics.expensive --pprof --pprof.addr=0.0.0.0 --pprof.port=6060 --private.api.addr=0.0.0.0:9999
stop_grace_period: 2m
volumes:
- ${TGETH_DATADIR:-~/Library/Ethereum}:/root/.ethereum/
- ${TG_DATADIR:-~/Library/TurboGeth}:/root/.turbogeth/
ports:
- 30303:30303
- 8545:8545
......@@ -35,7 +35,7 @@ services:
build:
context: ./../../
dockerfile: ./cmd/restapi/Dockerfile
command: --remote-db-addr turbo-geth:9999
command: --private.api.addr=turbo-geth:9999
ports:
- 8080:8080
......
......@@ -6,7 +6,7 @@ In order to build and run turbo-geth node together with RPC daemon, you need to
2. Build it by running `make`
3. Start it (it will start syncing to the mainnet) like this:
````
./build/bin/geth --remote-db-listen-addr localhost:9999
./build/bin/geth --private.api.addr=localhost:9999
````
4. Look out for this in the console/log file:
````
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment