D
Dokploy•2mo ago
Peeters

Twenty CRM template not working

Hello, I'm not sure where is the problem...
No description
6 Replies
Peeters
PeetersOP•2mo ago
FIX: there is "}" missing in ${STORAGE_LOCAL_PATH} fixed:
volumes:
- twenty-server-local-data:/app/packages/twenty-server/${STORAGE_LOCAL_PATH}:-.local-storage}
volumes:
- twenty-server-local-data:/app/packages/twenty-server/${STORAGE_LOCAL_PATH}:-.local-storage}
I've created pull request
Henrik
Henrik•2mo ago
That is the wrong solution 😄 . As it also says in the logs. You need to escape the $ sign with another one. The storage path is now wrong
Peeters
PeetersOP•2mo ago
Ah
Henrik
Henrik•2mo ago
It's th environment version of having a default version if you don't supply the env variable.
Peeters
PeetersOP•2mo ago
So its supposed to be like:

volumes:
- twenty-server-local-data:/app/packages/twenty-server/$${STORAGE_LOCAL_PATH:-.local-storage}

volumes:
- twenty-server-local-data:/app/packages/twenty-server/$${STORAGE_LOCAL_PATH:-.local-storage}
Henrik
Henrik•2mo ago
Yes

Did you find this page helpful?