mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-18 16:44:12 +00:00
Fix nousb
flag missing. (#1062)
This commit is contained in:
parent
fe6d4b5213
commit
c3ce05b5eb
@ -5,7 +5,7 @@ services:
|
|||||||
turbo-geth:
|
turbo-geth:
|
||||||
image: turbo-geth:latest
|
image: turbo-geth:latest
|
||||||
build: .
|
build: .
|
||||||
command: tg --nousb --metrics --pprof.addr="0.0.0.0" --pprof.port="6060" --private.api.addr="0.0.0.0:9090" --ipcdisable
|
command: tg --metrics --pprof.addr="0.0.0.0" --pprof.port="6060" --private.api.addr="0.0.0.0:9090" --ipcdisable
|
||||||
volumes:
|
volumes:
|
||||||
- ${XDG_DATA_HOME:-~/.local/share}/turbogeth:/root/.local/share/turbogeth
|
- ${XDG_DATA_HOME:-~/.local/share}/turbogeth:/root/.local/share/turbogeth
|
||||||
ports:
|
ports:
|
||||||
|
@ -75,6 +75,7 @@ func makeNodeConfig(ctx *cli.Context, p Params) *node.Config {
|
|||||||
}
|
}
|
||||||
nodeConfig.IPCPath = "tg.ipc"
|
nodeConfig.IPCPath = "tg.ipc"
|
||||||
nodeConfig.Name = "turbo-geth"
|
nodeConfig.Name = "turbo-geth"
|
||||||
|
nodeConfig.NoUSB = true
|
||||||
|
|
||||||
utils.SetNodeConfig(ctx, &nodeConfig)
|
utils.SetNodeConfig(ctx, &nodeConfig)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user