Skip to content

Instantly share code, notes, and snippets.

@ihavenoface
ihavenoface / README.md
Last active December 10, 2023 14:06
peercoind + portainer

docker

  1. Install docker
  2. Install portainer
  3. Run the container
mkdir /opt/peercoin-data && cp wallet.dat /opt/peercoin-data/
docker run -d --name=peercoind -v /opt/peercoin-data:/data --restart=always peercoin/peercoind
  1. Interface via command line
    The entrypoint in the current peercoin/peercoind image doesn't pass -datadir=/data internally by default, so we need to specify it.