diff --git a/bootnode.yml b/bootnode.yml index 0e34abe..efc3aba 100644 --- a/bootnode.yml +++ b/bootnode.yml @@ -5,7 +5,7 @@ services: container_name: bootnode volumes: - ./bootnode:/home/parity/.local/share/io.parity.ethereum - command: --config /home/parity/.local/share/io.parity.ethereum/bootnode.toml + command: "--config /home/parity/.local/share/io.parity.ethereum/bootnode.toml" ports: - 8545:8545 - 8546:8546 diff --git a/bootnode/bootnode.toml b/bootnode/bootnode.toml index ac12d33..229b440 100644 --- a/bootnode/bootnode.toml +++ b/bootnode/bootnode.toml @@ -1,4 +1,4 @@ -# File exampleNode.toml +# File bootnode.toml [parity] chain = "/home/parity/.local/share/io.parity.ethereum/bloxberg.json" diff --git a/setup.sh b/setup.sh index 8d3f962..56197e5 100755 --- a/setup.sh +++ b/setup.sh @@ -17,6 +17,7 @@ check_packages() { sudo apt install chrony sudo systemctl enable chrony sudo systemctl start chronyd + sudo chown -R 1000:1000 ./bootnode }