Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/feralducka/jupyterlab

Quick and dirty script to install Jupyter Lab on a docker container. Made for Ubuntu/Debian.
https://github.com/feralducka/jupyterlab

jupyterlab script setup

Last synced: about 1 month ago
JSON representation

Quick and dirty script to install Jupyter Lab on a docker container. Made for Ubuntu/Debian.

Awesome Lists containing this project

README

        

Make docker enviroment (inside of the container):
```
sh -c "$(wget https://raw.githubusercontent.com/LoBrol/jupyterlab/main/setup.sh -O -)"
```

Make docker image (host):
```
docker commit jupyterlab-server
```

Delete old docker (host):
```
docker stop
docker rm
```

Make new docker with jupyter auto-start (host):
```
docker run --entrypoint "/root/start-jupyter.sh" -p 8888:8888 --name jupyterlab -d jupyterlab-server
```