Deploy and Access Remote VSCode with Code-Server
Deploying a secure Remote VSCode via open source code-server is seamless with Octelium. All you have to do is create a publicly exposed web-add Service whose upstream is the codercom/code-server
container image (read more about managed containers here). This can be done very easily as follows:
1kind: Service2metadata:3name: code4spec:5mode: WEB6isPublic: true7config:8upstream:9container:10port: 808011image: codercom/code-server:latest12args:13- --auth14- none15- --bind-addr16- 0.0.0.0:808017- --disable-getting-started-override18- --trusted-origins19- code.octelium.org20- --disable-workspace-trust21resourceLimit:22cpu:23millicores: 200024memory:25megabytes: 4000
Now you can access the Service publicly via the client-less/BeyondCorp using your browser at the address https://code.<DOMAIN>
. You can read more about publicly exposed BeyondCorp Services here.