inattendu
inattendu
TTwenty
Created by armochillo on 2/12/2025 in #❓︱help
Selfhosted API not working ;(
Came here with similar problem ; The Rest API call where malfunctioning because I switched the host port to 3001 while the container/node port remain 3000. this configuration fixed the API :

server:
image: twentycrm/twenty:${TAG:-latest}
volumes:
- server-local-data:/app/packages/twenty-server/${STORAGE_LOCAL_PATH:-.local-storage}
- docker-data:/app/docker-data
ports:
- "3001:3001"
environment:
NODE_PORT: 3001
......

server:
image: twentycrm/twenty:${TAG:-latest}
volumes:
- server-local-data:/app/packages/twenty-server/${STORAGE_LOCAL_PATH:-.local-storage}
- docker-data:/app/docker-data
ports:
- "3001:3001"
environment:
NODE_PORT: 3001
......
55 replies