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
On creation of a code-server instance I have a springboot server auto-launch in the embedded terminal of VSCode, serving port 8580. This services is used by a custom extension.
In a local version of VSCode (non code-server) I can just have the extension WebView make calls to http://localhost:8580, but when using this base URL - export const SERVER_BASE_URL = "http://localhost:8580"; - through the code-server browser client, it doesn't direct to the INSTANCE/Container localhost - but rather to the USER's localhost.
Is there an easy method to have this service contained in the docker instance and accessed via a WebView in code-server?
My next step would be to expose 8580 externally and direct WebView calls to .domain.net:8580, but wondering if this is avoidable or if it can just all be contained. Thanks
The text was updated successfully, but these errors were encountered:
code-server --version
: 3.0.0On creation of a code-server instance I have a springboot server auto-launch in the embedded terminal of VSCode, serving port 8580. This services is used by a custom extension.
In a local version of VSCode (non code-server) I can just have the extension WebView make calls to http://localhost:8580, but when using this base URL -
export const SERVER_BASE_URL = "http://localhost:8580";
- through the code-server browser client, it doesn't direct to theINSTANCE
/Container localhost - but rather to the USER's localhost.Is there an easy method to have this service contained in the docker instance and accessed via a WebView in code-server?
My next step would be to expose 8580 externally and direct WebView calls to .domain.net:8580, but wondering if this is avoidable or if it can just all be contained. Thanks
The text was updated successfully, but these errors were encountered: