Hi all,
I have a docker development environment set-up. Almost Everything is working fine.
I installed the docker according frappe_docker/docs/development.md at main · frappe/frappe_docker · GitHub with a bench using frappe-14.
I have the following docker containers running:
385849c3a0d4 mariadb:10.6 "docker-entrypoint.s…" 2 weeks ago Up 3 hours 3306/tcp frappe_docker_devcontainer-mariadb-1
bd2d640d2164 vsc-frappe_docker-16e54941bf79d756de025f6b235de3231b7cf388842b3f6b5315b5085e61fd12-uid "/bin/sh -c 'echo Co…" 2 weeks ago Up 3 hours 0.0.0.0:8000-8005->8000-8005/tcp, :::8000-8005->8000-8005/tcp, 6787/tcp, 0.0.0.0:9000-9005->9000-9005/tcp, :::9000-9005->9000-9005/tcp frappe_docker_devcontainer-frappe-1
a5bdbf1426e5 redis:alpine "docker-entrypoint.s…" 2 weeks ago Up 3 hours 6379/tcp frappe_docker_devcontainer-redis-cache-1
eef1d8c768dd redis:alpine "docker-entrypoint.s…" 2 weeks ago Up 3 hours 6379/tcp frappe_docker_devcontainer-redis-queue-1
I only have one problem, in the console I always get en error on loading any page in the system:
socketio_client.js:24 WebSocket connection to ‘ws://development.localhost:9000/socket.io/?EIO=4&transport=websocket&sid=oP3nbTFa0zIf0TdsAAAQ’ failed: WebSocket is closed before the connection is established.
If I open up the URL directly, I get the following response:
{“code”:1,“message”:“Session ID unknown”}
In my project I need the realtime communication.
Does anyone have an idea why the socket.io communication is not working?
Thanks!
DoCa