jupyterlab / Dockerfile
toandaominh1997's picture
change to user permission
04f7f3e
raw
history blame contribute delete
411 Bytes
# FROM jupyterhub/jupyterhub:latest
#
# # Expose port 7680
# EXPOSE 7680
#
# # Your additional configuration and setup can go here
#
# # Start JupyterHub
# CMD ["jupyterhub", "--port", "7680"]
FROM jupyter/base-notebook:latest
# Start Jupyter Lab when the container launches
CMD ["jupyter", "lab", "--ip", "0.0.0.0", "--port", "7860", "--allow-root", "--NotebookApp.token=''", "--NotebookApp.password=''"]