-
Notifications
You must be signed in to change notification settings - Fork 0
FAQ
First, try installing the package using your local DAppNode IPFS.
Use the installer URL:
http://my.dappnode/installer/public/%2Fipfs%2F<PACKAGE_CID>
If the package installs successfully, no further action is required.
If the package is not available locally, try installing it via one of the remote IPFS DAppNode gateways listed below:
Use the installer URL provided in the release announcement (same URL format as above).
Remote gateways can serve the package even if it is not yet available on your local IPFS node.
If you want the package to be available from your local IPFS repository, you can fetch and pin it manually.
On your DAppNode machine:
docker exec -it DAppNodeCore-ipfs.dnp.dappnode.eth sh
# Fetch the package data (downloads all required blocks)
ipfs get -o /tmp/pkg <PACKAGE_CID>
# Pin the package locally (recursive by default)
ipfs pin add <PACKAGE_CID>Once pinned, the package will be available via your local IPFS and future installs should succeed without using a remote gateway.