01
How do I deploy the miner?
Use the official pearlfortune/pearl-miner release. The recommended pool endpoint is global.pearlfortune.org:443; replace {prl-address} with your PRL payout address.
docker run -d \
--name pearl-miner \
--restart unless-stopped \
--gpus all \
pearlfortune/pearl-miner:v1.2.1 \
--proxy global.pearlfortune.org:443 \
--address {prl-address} \
--worker "$(hostname)" \
-gpu
wget -c https://github.com/pearlfortune/pearl-miner/releases/download/v1.2.1/pearlfortune-v1.2.1.tar.gz
tar vxzf pearlfortune-v1.2.1.tar.gz
cd pearlfortune
./miner-cuda12 \
--proxy global.pearlfortune.org:443 \
--address {prl-address} \
--worker $(hostname) \
-gpu
AMD, HiveOS and Windows packages are documented in the official repository.