Questions tagged [code-server]
53 questions
0
votes
1 answer
How can I disable the VS Code editor and only show its integrated terminal?
I am currently building a lab environment for colleagues. I'm using code-server for that purpose. However, they don't need to use the code editor area, only the Terminal window is enough for learning. How do I configure the settings.json workspace…

sam hassan
- 197
- 3
- 14
0
votes
0 answers
Difference between licensing terms of code-server vs. VS Code Server
I am trying to understand the licensing limitations if I want to bundle code-server with my cloud application.
As per the docs, Out of the box, code-server is simply VS Code in the browser
Since code-server uses open source code of VS Code, how does…

nightlytrails
- 2,448
- 3
- 22
- 33
0
votes
0 answers
VS code-server starting service issue
I want to make code-server on my vps and when I'm starting service this error appears:
x code-server.service - code-server
Loaded: loaded (/lib/systemd/system/code-server.service; disabled; vendor preset: enabled)
Active: failed (Result:…
0
votes
2 answers
nginx + code-server reverse proxy for debugging returns 401 on non-browser POST requests
[edited on 20230428 adding info about nginx]
I'm setting up Stripe in a React/Node project. To support the payment workflow, the server must listen for two types of POST requests:
/create-payment-intent. This request comes from the browser. I got…

vicmortelmans
- 616
- 6
- 16
0
votes
1 answer
Jupyter Notebook cells not showing in code-server running in a docker
I want to use Jupyter notebooks in Code-Server in a docker. For whatever reasons I cant get it running and I also have/found no error messages that could help me finding the cause.
Jupyter notebook files (ipynb) can be created and I can also select…

David
- 1
- 2
0
votes
0 answers
Unable to run the VS Code server [error listen EADDRINUSE: address already in use 127.0.0.1:8080]
I was running VS Code server without any issues for months on GCP. However, recently I had to update my machine. After installation I found out that code server is gone. So I installed it again using the official installation script. However, now…

exan
- 3,236
- 5
- 24
- 38
0
votes
0 answers
Trying to run sequential commands in vscode using tasks.json automate
I am trying to automate this task:
when VSCode is launched -> open up a terminal and execute "ls -l" in the same terminal window. I have tried the "sequential" property as well as the "Depends on" property, but it still isn't working. This is what…

Spicy sauce
- 47
- 2
0
votes
0 answers
Code-server how to enable terminal to open by default
I am making a ".vscode" folder with settings.json file and a tasks.json file.
In the settings.json, I have
{
"type": "process",
"label": "terminal",
"command": "/bin/bash", // <-- your shell here
"args": [
"-l" // login…

Spicy sauce
- 47
- 2
0
votes
0 answers
How to communicate between the parent website and an embedded vs code server
I am running vs code server in an ec2 instance. It is exposed to the internet so I can access it by going to the url http://ec2-.amazonaws.com.
I have also developed an extension that is installed and running in this remote vs code…

Rahul R Badenkal
- 61
- 1
- 11
0
votes
1 answer
Jupyter Notebook not showing in Coder Code-Server
I set up Coder (with code-server) via a docker-compose.yml but encounter the problem, that Jupyter Notebooks can not be displayed or used is VSCode.
How the issue looks like with no cells showing up despite being present as seen in the outline on…

Kim Tang
- 2,330
- 2
- 9
- 34
0
votes
0 answers
Code-server:Failed to save "filenew.cpp": Unable to write file (NoPermissions (FileSystemError): Error: EACCES: permission denied, open '/home/.....')
I use docker ubuntu with code-server installed and in it I have mounted with webdav a Nextcloud directory.
When I access docker the username (which has davfs2 permissions) can see Nextcloud files in code-server.
When it saves it shows the…

ProgrammerJr
- 107
- 6
0
votes
1 answer
How do i import jar files to Visual studio code?
I followed everything written on the official website, but it doesn’t seem to work.
enter image description here
I also tried modifing the settings.json directly but that too didn’t seem to work.
Does anyone know what the problem may be?

Amrinder Singh
- 3
- 2
0
votes
1 answer
Coder workspace creation failing
I am trying to set up Coder via Docker with docker-compose.
I defined it as a service in my docker-compose.yml (based on this in-line command):
version: "3.6"
services:
coder:
image: codercom/coder:1.35.0
ports:
- "7080:7080"
…

Kim Tang
- 2,330
- 2
- 9
- 34
0
votes
0 answers
code-server docker installation cannot see git in linked volume
I have code-server installed with docker.
The docker compose file and config folder are under
/home/al3xis/containers/code-server/
├── compose.yaml
└── config/
├── workspace
├── data
└── ...
In my compose.yaml I have linked the…

Al3xis
- 1
- 2
0
votes
0 answers
Python raspberry pi Ubuntu System FileNotFound Error on terminal but it works on Code-server with another Path
Somethimes it works and somethimes it does not work. I want to run my script from terminal but i always get FileNotFound Error. I only use Absolute Path. FileNotFoundError: [Errno 2] No such file or directory:…

user14990172
- 3
- 1
- 3