Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

entrypoint.sh 281 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
  1. #!/bin/bash
  2. nohup jupyter-lab \
  3. --no-browser \
  4. --allow-root \
  5. --ip=0.0.0.0 \
  6. --NotebookApp.token='' \
  7. --NotebookApp.notebook_dir="${NOTEBOOK_HOME}" \
  8. --NotebookApp.allow_origin="*" > /dev/null 2>&1 &
  9. echo "jupyter-lab server started on port 8888."
  10. exec $@
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...