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:

1
kind: Service
2
metadata:
3
name: code
4
spec:
5
mode: WEB
6
isPublic: true
7
config:
8
upstream:
9
container:
10
port: 8080
11
image: codercom/code-server:latest
12
args:
13
- --auth
14
- none
15
- --bind-addr
16
- 0.0.0.0:8080
17
- --disable-getting-started-override
18
- --trusted-origins
19
- code.octelium.org
20
- --disable-workspace-trust
21
resourceLimit:
22
cpu:
23
millicores: 2000
24
memory:
25
megabytes: 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.

© 2025 octelium.comOctelium Labs, LLCAll rights reserved
Octelium and Octelium logo are trademarks of Octelium Labs, LLC.
WireGuard is a registered trademark of Jason A. Donenfeld