Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 23 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,23 +119,35 @@ To make the most out of the Bitcoin Signet Docker image, here are some essential
```bash
docker exec -it bitcoin-signet-instance /bin/bash
```

8. **Pull the latest version of the image**:


8. **View sync logs of a container**:

```bash
docker exec -it bitcoin-signet-instance bash
cd /root/.bitcoin/signet
tail debug.log -f
```
If most of your logs are composed of `UpdateTip: new best=...` messages, it means that your node is syncing with the network.

If after a while you see `Saw new header hash=...` logs, it means that your node is fully synced!

9. **Pull the latest version of the image**:

```bash
docker pull bitcoin-signet
```

9. **Remove an image**:
10. **Remove an image**:

```bash
docker rmi bitcoin-signet
```
```bash
docker rmi bitcoin-signet
```

11. **View all Docker images**:

10. **View all Docker images**:
```bash
docker images
```
```bash
docker images
```

Remember to replace `bitcoin-signet-instance` with the name of your container if you've named it differently.

Expand Down