The same node as the Windows app, without the window. It runs as a container on any Linux box with an NVIDIA or AMD GPU, keeps 80% of every job (85% on 16 GB+ cards), boosted up to 10x when the network is busy.
Needs the NVIDIA driver and the NVIDIA Container Toolkit. 8 GB VRAM or more.
docker run -d --name bread-node --gpus all --restart unless-stopped \
-v bread-node:/data \
-e BREAD_WALLET=YourSolanaAddress \
ghcr.io/breadai-io/node:latestRX 6000 and 7000 series, and Instinct cards. The device flags replace --gpus.
docker run -d --name bread-node --device /dev/kfd --device /dev/dri --restart unless-stopped \
-v bread-node:/data \
-e BREAD_WALLET=YourSolanaAddress \
ghcr.io/breadai-io/node:rocmThe first start downloads the model (about 5 GB) into the volume. Restarts are instant.
docker logs -f bread-node # model download, ONLINE, jobs and payouts
docker stop bread-node # goes offline cleanlyYour node appears on the network page within a minute. Payouts land in your wallet on the hourly batch, each one with a Solscan link in the log.
Already running Ollama? Download the tarball from the releases page, then:
tar -xzf bread-node-linux-x64.tar.gz && cd bread-node-linux
BREAD_WALLET=YourSolanaAddress node bread-node.mjsNeeds Node.js 22+. A systemd unit is included for running it as a service. Releases