Salvium (salviumd) daemon CLI node.
| Variable | Meaning |
|---|---|
RPC_LOGIN / RPC_PASSWORD | Enables authenticated RPC (--rpc-login) and exposes RPC on all interfaces. Omit both to keep RPC bound to localhost only. |
RPC_TLS | Base filename (without extension) of a cert/key pair under /etc/ssl/certs / /etc/ssl/private to enable --rpc-ssl — see TLS for RPC below. |
| Path | Purpose |
|---|---|
/salvium-data | salviumd blockchain data directory. |
/logs | salviumd log files. |
docker run -d --name salvium --restart unless-stopped \
-e RPC_LOGIN=<user> \
-e RPC_PASSWORD=<password> \
-v /path/to/data:/salvium-data \
-v /path/to/logs:/logs \
docker.io/jnitecki/salvium:latest
Set RPC_TLS to a name (e.g. server) and mount the matching cert/key pair:
-e RPC_TLS=server \
-v /path/to/fullchain.pem:/etc/ssl/certs/server.cer \
-v /path/to/privkey.pem:/etc/ssl/private/server.key \
Content type
Image
Digest
sha256:6aefe21f2…
Size
100.9 MB
Last updated
about 2 hours ago
docker pull jnitecki/salvium