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
2 changes: 1 addition & 1 deletion deployment/docker-build/dev/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion deployment/docker-build/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion deployment/samples/docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion deployment/samples/docker-monitoring/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 3 additions & 0 deletions deployment/scripts/001-update-ipfs-config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ echo "Updating IPFS config file..."
# Enable the V1+V2 service
ipfs config AutoNAT.ServiceMode 'enabled'

# CCNs propagate messages over pubsub, so the daemon must have it enabled
ipfs config Pubsub.Enabled --json 'true'
Comment on lines +16 to +17

# Only announce recursively pinned CIDs
ipfs config Provide.Strategy 'pinned'

Expand Down