Skip to content
Open
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
4 changes: 2 additions & 2 deletions deployment/docker-build/dev/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ services:

ipfs:
restart: always
image: ipfs/kubo:v0.37.0
image: ipfs/kubo:v0.41.0
ports:
- "4001:4001"
- "4001:4001/udp"
Expand All @@ -128,7 +128,7 @@ services:
- IPFS_TELEMETRY=off
networks:
- pyaleph
command: ["daemon", "--enable-pubsub-experiment", "--enable-gc", "--migrate"]
command: ["daemon", "--enable-gc", "--migrate"]


networks:
Expand Down
4 changes: 2 additions & 2 deletions deployment/docker-build/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ services:

ipfs:
restart: always
image: ipfs/kubo:v0.37.0
image: ipfs/kubo:v0.41.0
ports:
- "4001:4001"
- "4001:4001/udp"
Expand All @@ -58,7 +58,7 @@ services:
- IPFS_TELEMETRY=off
networks:
- pyaleph
command: ["daemon", "--enable-pubsub-experiment", "--enable-gc", "--migrate"]
command: ["daemon", "--enable-gc", "--migrate"]

postgres:
restart: always
Expand Down
4 changes: 2 additions & 2 deletions deployment/samples/docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ services:

ipfs:
restart: always
image: ipfs/kubo:v0.37.0
image: ipfs/kubo:v0.41.0
ports:
- "4001:4001"
- "4001:4001/udp"
Expand All @@ -116,7 +116,7 @@ services:
- IPFS_TELEMETRY=off
networks:
- pyaleph
command: ["daemon", "--enable-pubsub-experiment", "--enable-gc", "--migrate"]
command: ["daemon", "--enable-gc", "--migrate"]


networks:
Expand Down
4 changes: 2 additions & 2 deletions deployment/samples/docker-monitoring/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ services:

ipfs:
restart: always
image: ipfs/kubo:v0.37.0
image: ipfs/kubo:v0.41.0
ports:
- "4001:4001"
- "4001:4001/udp"
Expand All @@ -118,7 +118,7 @@ services:
- IPFS_TELEMETRY=off
networks:
- pyaleph
command: ["daemon", "--enable-pubsub-experiment", "--enable-gc", "--migrate"]
command: ["daemon", "--enable-gc", "--migrate"]

prometheus:
restart: always
Expand Down
8 changes: 6 additions & 2 deletions deployment/scripts/001-update-ipfs-config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ echo "Updating IPFS config file..."
# Enable the V1+V2 service
ipfs config AutoNAT.ServiceMode 'enabled'

# Only announce recursively pinned CIDs
ipfs config Reprovider.Strategy 'pinned'
# Only announce recursively pinned CIDs (Reprovider.* keys were removed in kubo 0.38)
ipfs config Provide.Strategy 'pinned'

# Pubsub must be enabled via config in kubo 0.38+; the legacy --enable-pubsub-experiment
# daemon flag is a no-op (logs a deprecation error without enabling pubsub).
ipfs config Pubsub.Enabled --json 'true'

# ONLY use the Amino DHT (no HTTP routers).
ipfs config Routing.Type "dhtserver"
Expand Down
Loading