You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 6, 2020. It is now read-only.
Operating system: Linux host running Docker container
Installation: Docker :stable tag
Fully synchronized: n/a
Network: n/a
Restarted: yes
I noticed this issue on the :stable Docker tag recently. The Parity container is unable to write to a volume created with docker volume create when using --base-path or --db-path.
Steps to reproduce
Pull the latest :stable Docker tag:
docker pull parity/parity:stable
Create the Docker volume:
docker volume create --name parity-test
Run the Parity Docker container using the new volume:
docker run -p 8546:8546 -v parity-test:/data \
-it parity/parity:stable --chain ropsten \
--ws-interface all --ws-origins "all" \
--base-path /data
This may just be a simple documentation fix, but the expected behavior is a docker run command that can utilize the volume created by Docker. The existing Docker documentation may need an update anyway.