mirror of
https://github.com/GNS3/gns3-registry.git
synced 2025-04-12 21:52:59 +00:00
Working Jupyter appliance
This commit is contained in:
parent
c2b781afea
commit
9cf422606f
19
appliances/jupyter.gns3a
Normal file
19
appliances/jupyter.gns3a
Normal file
@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "Jupyter",
|
||||
"category": "guest",
|
||||
"description": "The Jupyter Notebook is an open-source web application that allows you to create and share documents that contain live code, equations, visualizations and explanatory text. Uses include: data cleaning and transformation, numerical simulation, statistical modeling, machine learning and much more.",
|
||||
"vendor_name": "Project Jupyter",
|
||||
"vendor_url": "http://jupyter.org/",
|
||||
"product_name": "Jupyter",
|
||||
"registry_version": 3,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
"docker": {
|
||||
"adapters": 1,
|
||||
"image": "gns3/jupyter",
|
||||
"console_type": "http",
|
||||
"console_http_port": 8888,
|
||||
"console_http_path": "/"
|
||||
}
|
||||
}
|
13
docker/jupyter/Dockerfile
Normal file
13
docker/jupyter/Dockerfile
Normal file
@ -0,0 +1,13 @@
|
||||
FROM python:3.6.1
|
||||
|
||||
RUN pip3 install jupyter
|
||||
|
||||
ADD jupyter_notebook_config.py /root/.jupyter/jupyter_notebook_config.py
|
||||
|
||||
RUN mkdir -p /opt/notebooks
|
||||
|
||||
EXPOSE 8888
|
||||
|
||||
VOLUME /opt/notebooks
|
||||
|
||||
CMD jupyter notebook --no-browser /opt/notebooks
|
2
docker/jupyter/jupyter_notebook_config.py
Normal file
2
docker/jupyter/jupyter_notebook_config.py
Normal file
@ -0,0 +1,2 @@
|
||||
c.NotebookApp.token = ''
|
||||
c.NotebookApp.password = ''
|
Loading…
x
Reference in New Issue
Block a user