We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
docker volume create tezos_node docker run -v tezos_node:/var/run/tezos .... ... Error: Unix permission denied
This is because the volume is mounted at the path, owned by 'root' which the tezos user cannot modify.
I was able to fix this by modifying the Dockerfile as follows:
RUN useradd -ms /bin/bash tezos RUN mkdir -p /var/run/tezos/node /var/run/tezos/client && \ chown tezos /var/run/tezos/node /var/run/tezos/client
The text was updated successfully, but these errors were encountered:
Fixed in #3
Sorry, something went wrong.
No branches or pull requests
This is because the volume is mounted at the path, owned by 'root' which the tezos user cannot modify.
I was able to fix this by modifying the Dockerfile as follows:
The text was updated successfully, but these errors were encountered: