Runing Jupyter Notebook on CasaOS Server with aarch64 Based on Konmeo/jupyter
- 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 Jupyter3.yaml
- to change your docker external port, edit the Jupyter3.yaml:
published: "3001"
- Now you can aceess: http://casaos.yourserver:3001
- How to access the login token:
- On Casaos Home
- Click on Jupyter3 Config
- Click on Terminal and Logs
- on Logs, Find this line:
jupyter3-jupyter3-1 | [I 08:47:36.603 NotebookApp] http://192.168.255.255:8888/?token=70debe4447bbd2587
- Take the token from Link above.
- Drop the token on your Jupyter Login Screen.
- This file is Based on Comand:
docker run -i -t -p 3001:8888 -v "$PWD":/workspace --name jupyter3 konmeo/jupyter /bin/bash -c "\
jupyter notebook \
--notebook-dir=/workspace --ip='*' --port=8888 \
--no-browser --allow-root"
- Your Jupiter will access your USER folder From CasaOS Linux server.