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.
This commit is contained in:
2025-10-05 18:13:53 +02:00
parent 7c45f8e887
commit 0ba260d0e7

View File

@@ -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
```
---