Following the quick start guide I executed the following command on my laptop:
docker run \
-d \
--name baserow \
-e BASEROW_PUBLIC_URL=http://localhost:3001 \
-v baserow_data:/baserow/data \
-p 3001:80 \
-p 443:443 \
--restart unless-stopped \
baserow/baserow:1.13.3
This launched Baserow successfully and I was able to access the dashboard at http://localhost:3001/dashboard.
However I keep getting the following error message:
Failed
Connection to the server has failed. Please refresh the page.
Looking at the console I see:
WebSocket connection to 'ws://localhost:3001/ws/core/?jwt_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNjc0MDUzNDg4LCJpYXQiOjE2NzQwNTI4ODgsImp0aSI6IjM5ZWZlNGQ2Y2IzNTQ4YmZhZTI4ZDI3NjQ4OGVhMGViIiwidXNlcl9pZCI6MX0.8B9WuTYZLhaIo5y35T_rQefeNCx0c2S2fikkjG34z-M' failed:
Any advice please?