Hey guys , I have installed the docker
Hey guys , I have installed the docker version on my ubunto vps , I am able to connect to my backend from my project, however on dashboard.domain.com i am getting This deployment is not online.
Check that your Convex server is running and accessible at http://127.0.0.1:3210. , even though I have setup the nginx proxy for api.domain.com to localhost:3210 , and I have generated ssl for them using certbot , am I missing something ? i have been trying to make this work for the past 2 days and i can't seem to wrap my head around it.
3 Replies
The docker container with the dashboard tries to hit 127.0.0.1:3210 to get to the backend.
The default setup assumes that the dashboard docker container and the backend docker container are running next to each other on the same machine.
It sounds like you are able to reach your dashboard's container (presumably how you are getting the error message about checking that your convex server is running).
But the dashboard's container can't reach the convex server.
Maybe that can help you debug further and narrow down the issue with your setup?
thank you for the response. when i check my containers there are 2 containers running with docker on the same machine , one called backend and one dashboard , and also i have put a .env file with the required variables beside the docker-compose file, am i missing a container or an editing step on the docker-compose yaml file ?
also the main error that i get on my dashboard url is a ws socket error : WebSocket connection to 'ws://127.0.0.1:3210/api/1.19.5/sync' failed
it should only be 2 containers. are you exposing your docker container ports to your vps? because you need to bind it else localhost will only point to vps and not docker
ie. docker run -p localhost:3210:3210 convex-backend
or in docker config: