Closed qrest closed 1 year ago
Can you make a PR for this?
Can you make a PR for this?
The repository (https://github.com/dashpay/docker-dashd) is archived so no I can not.
Ah, but the docker files live now here https://github.com/dashpay/dash/tree/master/contrib/containers
Right, but the image description is not fetched from there. So I guess the owner of the docker hub account has to change it directly.
Anybody knows who is that? @kwvg @PastaPastaPasta @strophy
Correct, we looked into setting up automation around this but it wasn't feasible without a paid Docker Hub subscription, so we just do manual updates to those docs for the moment. The page has been updated, sorry for missing this when the change occurred.
Verify here and close issue if resolved please: https://hub.docker.com/repository/docker/dashpay/dashd/general
Thanks, the docker image page is indeed correct now
The price for a subscription for open source communities is $ 0, see https://www.docker.com/pricing/ @strophy does this help?
Or is it the functionality that is offered for free isn't sufficient for what you talk about?
This is the price for an individual account, but we have a grandfathered "Docker Free Team" pricing plan that allows basic team features, but limited to 3 users. There has been controversy around this earlier this year, see here for how Docker eventually reversed their decision: https://www.docker.com/developers/free-team-faq/
The documentation on https://hub.docker.com/r/dashpay/dashd is suggesting to mount a volume to
/dash
, which is not correct since v18.1. Instead the volume should be mounted to/home/dash
.Change
docker volume create --name=dashd-data docker run -v dashd-data:/dash --name=dashd-node -d \ -p 9999:9999 \ -p 127.0.0.1:9998:9998 \ dashpay/dashd
to
docker volume create --name=dashd-data docker run -v dashd-data:/home/dash --name=dashd-node -d \ -p 9999:9999 \ -p 127.0.0.1:9998:9998 \ dashpay/dashd
This change was introduced by this commit: https://github.com/dashpay/dash/commit/6699b0228f9fd5885ebe60d2e33e4f678ed77c18