fix(ipfs): correct Kubo container hostname (collab-server-ipfs-1)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-04-02 15:06:05 -07:00
parent 789b74a776
commit 5b4300db77
2 changed files with 2 additions and 2 deletions

View File

@ -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:

View File

@ -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";