Looks like it's officially possible to self-host vscode server and access it through vscode.dev (also see this GitHub issue).
For reaching it through custom URL consider using Gitpod's OpenVSCode Server fork of vscode.
If you just want to share your configuration between machines, it's probably simplest to just use settings sync, which is available in default installation.
Answer from Matija Sirk on Stack OverflowGoal
Having multiple containers with different vscode instances.
Example: I want one container with a vscode with the necessary extensions (and dependecies) to do web development, other container to do back-end development, and other to do data-science development. This will avoid having tons of extensions in the same VScode instance, wich sometimes, causes conflicts.
As far as i know, this can be done accessing via browser pointing to a port of the container running VScode right? Can i access without the need of browser? This is because i use a lot keyshortcuts and i'm afraid they don't work if use VScode via browser. Also, is the performance a concern or will it run smoothly?
Some references
site A
site B
If you have other references other than the ones i provided, please share.
How to use docker desktop for Windows with VS Code
VS Code Dev Containers (Docker for Robotics Part 5) - Articulated Robotics Content Discussions - Articulated Robotics Community
Anyone here use vscode?
I'm having a hard time understanding what you want to do specifically. Do you want to work with a repository inside a docker container to have a common development environment that is always the same regardless of the host system?
In that case you simply follow this guide: https://code.visualstudio.com/docs/remote/containers
More on reddit.com