entrypoint.sh 188 B

12345678910111213
  1. #!/bin/bash
  2. set -e
  3. dever_start()
  4. {
  5. jupyter notebook --allow-root --no-browser --notebook-dir=/usr/local/jupyter --port=8888 --ip=*
  6. }
  7. if [ "$1" = 'start' ]; then
  8. dever_start
  9. fi
  10. exec sh