From 21cab9492e088e0f8bf75c04e4205172b3fe1545 Mon Sep 17 00:00:00 2001 From: Davide Grilli Date: Wed, 15 Oct 2025 14:07:11 +0200 Subject: [PATCH] docs: update README with new repository link and docker instructions Update the Palladium Full Node repository link and improve Docker Compose configuration details. Add note about host.docker.internal usage and clarify exposed ports for ElectrumX. --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fed8c3d..b289ff9 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Tested on: * ✅ Debian 12 * ✅ Ubuntu 24.04 -🔗 Palladium Full Node: [NotRin7/Palladium](https://github.com/NotRin7/Palladium) +🔗 Palladium Full Node: [davide3011/palladiumcore](https://github.com/davide3011/palladiumcore) --- @@ -53,16 +53,21 @@ In the `docker-compose.yml` file, you can set the RPC credentials of the Palladi ```yaml environment: - - DAEMON_URL=http://:@:/ + DAEMON_URL: "http://:@host.docker.internal:/" ``` Replace with your actual values: * `` → RPC username of the node * `` → RPC password of the node -* `` → node address (e.g., `127.0.0.1`) * `` → RPC port of the node (e.g., `2332` for Palladium) +**Note:** The compose uses `host.docker.internal` to connect to the Palladium node running on your host machine (outside the container). This works on both Windows/Mac and Linux thanks to the `extra_hosts` configuration. + +**Ports:** ElectrumX exposes: +- `50001` → TCP (unencrypted) +- `50002` → SSL (encrypted, recommended) + **Important:** never include real credentials in files you upload to GitHub. ---