From 0ba260d0e74471174a83e55f607d31fc4ee19d73 Mon Sep 17 00:00:00 2001 From: Davide Grilli Date: Sun, 5 Oct 2025 18:13:53 +0200 Subject: [PATCH] docs: update docker compose commands in README The commands were updated to use the newer 'docker compose' syntax instead of the deprecated 'docker-compose' form. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b9487e2..76dc7ea 100644 --- a/README.md +++ b/README.md @@ -78,13 +78,13 @@ Replace with your actual values: 3. Start the containers with Docker Compose: ```bash - docker-compose up -d + docker compose up -d ``` 4. Check the logs to verify that ElectrumX started correctly: ```bash - docker-compose logs -f + docker compose logs -f ``` ---