A solana-test-validator built from the official github repository for Apple Silicon (aarch64).
2.8K
A ready-to-use Docker image for running a Solana test validator with pre-funded test accounts. Built from source to support ARM64/Apple Silicon architectures.
docker run -d \
-p 8899:8899 \
-p 8900:8900 \
-p 9900:9900 \
--name solana-validator \
chesterk/solana-test-validator
| Port | Service |
|---|---|
| 8899 | RPC endpoint |
| 8900 | RPC PubSub |
| 9900 | Faucet |
solana config set --url http://localhost:8899
# Using Solana CLI
solana airdrop 1
# Using curl
curl -X POST http://localhost:9900/airdrop/<PUBKEY>/1000000000
solana balance
version: '3.8'
services:
solana-test-validator:
image: your-dockerhub-username/solana-test-validator
ports:
- "8899:8899"
- "8900:8900"
- "9900:9900"
volumes:
- solana-ledger:/solana/ledger
volumes:
solana-ledger:
Official Solana releases don't provide ARM64 binaries. This image compiles Solana from the official GitHub repository to ensure compatibility across all architectures. Furthermore, solanalabs GitHub repositories are all archived, now. They announced to move to Anza but it's not the same and straightforward to migrate. While solana-test-validator is still useful, there's no hope to expect the official image from them, anymore.
latest - Latest stable buildMIT License - See LICENSE for details
Content type
Image
Digest
sha256:23d09dc60…
Size
70.9 MB
Last updated
11 months ago
docker pull chesterk/solana-test-validator