Runing JupyterLab Notebook on CasaOS Server with aarch64 Based on jupyterLab Base Notebook Based on Docker-Stacks
- Alternative images
- How to use:
- install CasaOs
sudo apt-get update -y
sudo apt-get install curl -y
wget -qO- https://get.casaos.io/v0.4.13 | sudo bash
# for newer version: curl -fsSL https://get.casaos.io | sudo bash
- On Casaos Home.
- click on "+".
- Click on add custom image.
- Click on import icon.
- select the JupyterLab.yaml
- to change your docker external port, edit the JupyterLab.yaml
published: "3000"
- Now you can aceess: http://casaos.yourserver:3000
- How to access the login token:
- On Casaos Home
- Click on JupyterLab Config
- Click on Terminal and Logs
- on Logs, Find this line:
[I 2023-11-12 19:08:57.681 ServerApp] Jupyter Server 2.10.0 is running at:
[I 2023-11-12 19:08:57.682 ServerApp] http://7371962312567:8888/lab?token=10bba6428018b6d3f913231231
- Take the token from Link above.
- Drop the token on your JupyterLab Login Screen.
- This file is Based on Comand:
podman pull quay.io/jupyter/base-notebook
docker run -it --rm -p 3000:8888 -v "${PWD}":/home/jovyan/work quay.io/jupyter/base-notebook
- Your Jupiter will access your USER folder From CasaOS Linux server.
JupyterLab is the default for all the Jupyter Docker Stacks images.
It is still possible to switch back to Jupyter Notebook (or to launch a different startup command).
You can achieve this by passing the environment variable DOCKER_STACKS_JUPYTER_CMD=notebook
(or any other valid jupyter
subcommand) at container startup;
more information is available in the documentation.
- Documentation on ReadTheDocs
- Issue Tracker on GitHub
- Jupyter Discourse Forum
- Jupyter Website
- Images on Quay.io
This project only builds one set of images at a time.
If you want to use older Ubuntu
and/or python
version, you can use following images:
Build Date | Ubuntu | Python | Registry | Tag |
---|---|---|---|---|
2022-10-09 | 20.04 | 3.7 | docker.io | 1aac87eb7fa5 |
2022-10-09 | 20.04 | 3.8 | docker.io | a374cab4fcb6 |
2022-10-09 | 20.04 | 3.9 | docker.io | 5ae537728c69 |
2022-10-09 | 20.04 | 3.10 | docker.io | f3079808ca8c |
2022-10-09 | 22.04 | 3.7 | docker.io | b86753318aa1 |
2022-10-09 | 22.04 | 3.8 | docker.io | 7285848c0a11 |
2022-10-09 | 22.04 | 3.9 | docker.io | ed2908bbb62e |
2023-05-30 | 22.04 | 3.10 | docker.io | 4d70cf8da953 |
weekly build | 22.04 | 3.11 | quay.io | latest |
Please see the Contributor Guide on ReadTheDocs for information about how to contribute recipes, features, tests, and community maintained stacks.
- jupyter/repo2docker - Turn git repositories into Jupyter-enabled Docker Images
- openshift/source-to-image - A tool for building artifacts from source and injecting them into docker images
- jupyter-on-openshift/jupyter-notebooks - OpenShift compatible S2I builder for basic notebook images