Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Dockerfile_monitor
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ ENV GODEBUG=madvdontneed=1 \
GOMEMLIMIT=512MiB \
GOGC=50

EXPOSE 8000
EXPOSE 8080

CMD ["dlockss-monitor"]
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ services:
restart: unless-stopped
environment:
DLOCKSS_IPFS_NODE: "/dns4/ipfs/tcp/5001" # "ipfs" resolves to the Kubo service below
DLOCKSS_DATA_DIR: "/data/ingest" # location that DLOCKSS monitors for igesting files
DLOCKSS_DATA_DIR: "/data/ingest" # location that D-LOCKSS monitors for ingesting files
DLOCKSS_IPFS_CONFIG: "/ipfs-repo/config" # derive identity from IPFS node (shared peer ID)
# DLOCKSS_NODE_NAME: my-node # human-readable name shown in the monitor;
# # if empty the peer ID is displayed instead
Expand Down Expand Up @@ -196,7 +196,7 @@ export DLOCKSS_MONITOR_GEOIP_DB=/path/to/GeoLite2-City.mmdb
```
Without a local database, the monitor falls back to the ip-api.com batch API with permanent caching.

The monitor bootstrap-subscribes to all shards up to depth 5 (63 shards) so it can see nodes even when started late. Set `DLOCKSS_MONITOR_BOOTSTRAP_SHARD_DEPTH` (0–12) to tune.
The monitor bootstrap-subscribes to all shards up to depth 6 (127 shards) so it can see nodes even when started late. Set `DLOCKSS_MONITOR_BOOTSTRAP_SHARD_DEPTH` (0–12) to tune.

Alternatively use: https://dlockss-monitor.wmcloud.org.

Expand Down
2 changes: 1 addition & 1 deletion docs/DLOCKSS_PROTOCOL.md
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ services:
volumes:
- ipfs-data:/data/ipfs
dlockss:
image: dlockss:latest
image: ghcr.io/gipplab/dlockss-single-node:latest
depends_on: [ipfs]
volumes:
- ipfs-data:/ipfs-repo:ro
Expand Down
Loading