Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/feralducka/jupyterlab
- Owner: FeralDucka
- Created: 2024-01-10T18:54:26.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-01-10T20:55:31.000Z (12 months ago)
- Last Synced: 2024-10-19T08:26:02.048Z (2 months ago)
- Topics: jupyterlab, script, setup
- Language: Shell
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```