From 5b4300db774725ab9f4f02ed73bc1b426dda0f2c Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Thu, 2 Apr 2026 15:06:05 -0700 Subject: [PATCH] fix(ipfs): correct Kubo container hostname (collab-server-ipfs-1) Co-Authored-By: Claude Opus 4.6 --- docker-compose.yml | 2 +- server/ipfs.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 002534a..e54f351 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -63,7 +63,7 @@ services: - TRANSAK_ENV=PRODUCTION - SCRIBUS_BRIDGE_SECRET=${SCRIBUS_BRIDGE_SECRET} - SCRIBUS_NOVNC_URL=https://design.rspace.online - - IPFS_API_URL=http://kubo:5001 + - IPFS_API_URL=http://collab-server-ipfs-1:5001 - IPFS_GATEWAY_URL=https://ipfs.jeffemmett.com depends_on: rspace-db: diff --git a/server/ipfs.ts b/server/ipfs.ts index e916869..860d04c 100644 --- a/server/ipfs.ts +++ b/server/ipfs.ts @@ -5,7 +5,7 @@ * and generated files are intentionally public. */ -const IPFS_API_URL = process.env.IPFS_API_URL || "http://kubo:5001"; +const IPFS_API_URL = process.env.IPFS_API_URL || "http://collab-server-ipfs-1:5001"; const IPFS_GATEWAY_URL = process.env.IPFS_GATEWAY_URL || "https://ipfs.jeffemmett.com";