README 1.1 KB

1234567891011121314151617181920
  1. Before building the image, please switch the working directory to the directory where the corresponding version Dockerfile resides
  2. build image by shell:
  3. docker build -t <author>/jupyter:<tag>
  4. run container:
  5. - First Method
  6. docker volume create jupyter
  7. docker run -itd --name jupyter -p 8888:8888 -v jupyter:/jupyter <author>/jupyter:<tag>
  8. - Second Method
  9. docker run -itd --name jupyter -p 8888:8888 -v /path/to/save:/jupyter <author>/jupyter:<tag>
  10. Version
  11. ------
  12. Jupyter Lab:
  13. - /Alpine-NonRoot : Jupyter Lab server built on Alpine Linux, running with non-root users (`notebook`), this build is relatively secure.
  14. - /Ubuntu2204-NonRoot : Jupyter Lab server built on Ubuntu 22.04, running with non-root users (`notebook`), this build is relatively secure.
  15. Jupyter Notebook:
  16. - /Alpine-NonRoot : Jupyter Notebook server built on Alpine Linux, running with non-root users (`notebook`), this build is relatively secure.
  17. - /Alpine-Root : Jupyter Notebook server built on Alpine Linux, running as Root user, this build is recommended only for testing or learning environments deployed on an Intranet.