Questions tagged [code-server]
53 questions
3
votes
2 answers
How to install VS Code extensions using code-server?
Here's my Dockerfile:
FROM linuxserver/code-server:latest
[..]
As you can see, I'm using an image that has code-server installed. and it works just fine. When I run it, I can see VS Code via localhost:8443.
However, when I try to install VS Code…

tayebe pourmand
- 185
- 1
- 5
2
votes
1 answer
How to install C/C++-Extension in VSCode-Server?
I have set up a code-server on a remote machine and when browsing the extensions, the C/C++-Extension from Microsoft is not available.
It is also not possible to install it via the CLI:
pi@raspberrypi:~ $ code-server --install-extension…

memeToasty
- 21
- 2
- 4
2
votes
1 answer
Where does the Github OAuth token stored in code-server?
In code-server, for a repo cloned using HTTPS and when performing git operation like git fetch, git push etc. For the first time it prompts to sign-in and takes through an OAuth flow, and ends up in the following purple screen:
But in every…

Keshi
- 36
- 4
2
votes
0 answers
How to skip the VS Code Get Started walkthrough in code-server?
The code-server view always directs to the VS Code Get Started walkthrough at the start when I open it on an incognito window.
I tried adding "workbench.startupEditor": "none" to both User/settings.json and workspace settings.json but still it…

prabushi samarakoon
- 539
- 2
- 9
2
votes
1 answer
code-server (docker) and nuxt.js / javascript 404
Setup: I use a self-hosted code-server (dockerized) behind a fritzBox on my home lan. I have a FQDN (mysub.mydomain.com) pointing to a dyndns (mysdyn.my-router.com) with a cname entry which ends up on the fritzBox, port forwarded to the docker…

VictorRomeo
- 145
- 1
- 7
2
votes
1 answer
how to start code server terminal with chroot?
I have a code server that runs on Android with termux, for university reasons, there are times when I must share my vscode environment and I would not like to expose my entire system and personal files through the terminal.
So I was wondering if it…
2
votes
1 answer
Google cloud shell .customize_environment not working
I'm trying to install code-server at the cloud shell boot,
so, I created the file .customize_environment
nano $HOME/.customize_environment
and the content is:
echo "installing code server..."
curl -fsSL https://code-server.dev/install.sh |…

Sh eldeeb
- 1,589
- 3
- 18
- 41
1
vote
0 answers
VSCode tunnel failed to connect to proxy: error connecting to tunnel: proxy connection failed: failed to lookup address information
I am using VSCode CLI to create a tunnel behind a proxy:
./code-insiders tunnel --verbose
But it ends up with a connection error:
[2023-03-09 10:30:50] trace Found token in keyring
[2023-03-09 10:30:50] debug [reqwest::connect] starting new…

saltyfish
- 11
- 1
1
vote
1 answer
Cannot connect to code-server in GCP - Permission denied (publickey)
I am attempting to install and access vscode in an instance of Compute Engine of GCP using the instructions on Coder.1
I have also been going through their instructions on exposing code-server using SSH2, however, when I try and run the command ssh…

apk19
- 47
- 6
1
vote
2 answers
Solution for running REACT web app on (visual studio)code-server behind the proxy situation
When we develop web app with VS code-server, the default method to preview the result URL is
http://{yoursite}/proxy/3000
However, it does not work with react development.
When we follow the official tutorial to start a react app, all the static…

RAY
- 2,201
- 2
- 19
- 18
1
vote
0 answers
status=203/EXEC Error when creating code server
I've created code server service on Ubuntu 18.04 nginx.
But gives error when run command :
systemctl status code-server
Error :
Warning: The unit file, source configuration file or drop-ins of code-server.service changed on disk. Run 'systemctl…

serdar
- 454
- 1
- 8
- 26
1
vote
0 answers
installing python in a docker container
I'm new to coding and been fiddling around with docker containers and services
I have installed a temporary vscode server on my raspberry and deployed on my local lan for accessing it from various machines
Now i've been trying to create a flask app…

Divroth
- 49
- 1
- 5
1
vote
0 answers
Unable to install python extension on code-server
I am install vscode using the below commands on ubuntu base image and trying to install python extension and it gets an error.
ARG IDE_HOME="/opt"
ARG CODE_SERVER_VERSION="v3.11.1"
ARG CODE_SERVER_FILE="code-server-3.11.1-linux-amd64.tar.gz"
WORKDIR…

user3222101
- 1,270
- 2
- 24
- 43
1
vote
0 answers
Code-Server Certbot Error during Challenge
I am trying to install HTTPS using certbot on AWS ec2 instances that running code-server app but got this error:
IMPORTANT NOTES:
The following errors were reported by the server:
Domain: code.bamdev.id
Type: unauthorized
Detail: Invalid response…
1
vote
1 answer
Cannot install code-server onto WSL. "System has not been booted with systemd as init system (PID 1). Can't operate."
I'm following the instructions to download code-server here: https://github.com/cdr/code-server/blob/v3.8.0/doc/install.md#debian-ubuntu
Because I'm on windows, I'm using Ubuntu on Windows Subsystem for Linux (WSL).
I have successfully run the…

nyptop
- 59
- 1
- 2
- 9