An open API service indexing awesome lists of open source software.

https://github.com/ideonate/jh-code-server

Getting code-server to run in JupyterHub
https://github.com/ideonate/jh-code-server

Last synced: 2 months ago
JSON representation

Getting code-server to run in JupyterHub

Awesome Lists containing this project

README

          

# jh-code-server

Getting VSCode [code-server](https://github.com/cdr/code-server) running inside JupyterHub

Build the Docker image:

```
docker build -t jh-code-server .
```

Add to your JupyterHub config, e.g.:

```
c.DockerSpawner.image = 'jh-code-server:latest'
c.DockerSpawner.cmd = ["python3", "-m", "jhsingle_native_proxy.main", "--destport=0", "/usr/bin/code-server", "{--}auth", "none", "{--}bind-addr", "0.0.0.0:{port}", "."]
```

To do:

Think about how to mount the user's home folder.

Pull requests are welcome.