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