You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 13, 2026. It is now read-only.
I've been using Pattern Lab PHP via a docker container. I recently added plugin-reload to the image I manage, but was getting issues connecting to the web socket. A quick check shows that the socket is getting bound to ws://localhost:8000 in AutoReloadServer.php.
Changing this to ws://0.0.0.0:8000 allows binding from inside the container. I'd make a PR, but his doesn't feel quite right as a general purpose solution, though. Maybe there's a good way to configure the plugin declaratively?
I've been using Pattern Lab PHP via a docker container. I recently added plugin-reload to the image I manage, but was getting issues connecting to the web socket. A quick check shows that the socket is getting bound to
ws://localhost:8000inAutoReloadServer.php.Changing this to
ws://0.0.0.0:8000allows binding from inside the container. I'd make a PR, but his doesn't feel quite right as a general purpose solution, though. Maybe there's a good way to configure the plugin declaratively?