An open source remote development environment serving Visual Studio Code - cloud-based IDE by Coder
1M+
An OpenShift Template to run a distribution of Coder's Visual Studio Code in browser on your OpenShift Cluster
Based on https://github.com/sr229/code-server-openshift and https://github.com/codercom/code-server/releases
oc new-app -f https://raw.githubusercontent.com/jefferyb/code-server-openshift/master/code-server-openshift-template.yaml -p URL=vscode.example.com -p CODER_PASSWORD=welcome2vscode
# OR
oc process -f https://raw.githubusercontent.com/jefferyb/code-server-openshift/master/code-server-openshift-template.yaml -p URL=vscode.example.com -p CODER_PASSWORD=welcome2vscode | oc create -f -
# OR
oc new-app --name=code-server --image=jefferyb/code-server -e CODER_PASSWORD=welcome2vscode
oc create route edge code-server --insecure-policy=Redirect --service=code-server --hostname=vscode.example.com
# Deploy
kubectl run code-server --image=jefferyb/code-server -e CODER_PASSWORD=welcome2vscode
# Deploy
docker run -itd --name code-server -e CODER_PASSWORD=welcome2vscode -p 9000:9000 -v "${PWD}:/home/coder/project" jefferyb/code-server
If we find /home/coder/projects/.setup/setup-vscode file in the container, we'll run/execute it to setup VS Code on startup. Useful when a container restarts and want to run a script to it setup automatically
Added a few packages that can be used in vs code terminal
Content type
Image
Digest
Size
740.8 MB
Last updated
about 5 years ago
docker pull jefferyb/code-server