From 552c4590c26c9a980344195640a1eecf6f414c0d Mon Sep 17 00:00:00 2001 From: gilesb Date: Thu, 8 Jan 2026 18:51:25 +0000 Subject: [PATCH] Expose IPFS swarm port 4001 for P2P connectivity Enables full IPFS network participation - other nodes can discover and fetch content from this node. Co-Authored-By: Claude Opus 4.5 --- docker-compose.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index d42d671..424844a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -29,6 +29,9 @@ services: ipfs: image: ipfs/kubo:latest + ports: + - "4001:4001" # Swarm TCP + - "4001:4001/udp" # Swarm UDP volumes: - ipfs_data:/data/ipfs - l1_cache:/data/cache:ro # Read-only access to cache for adding files