forked from krab7191/vest-jupyterhub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
23 lines (23 loc) · 977 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "vest-jupyter-hub",
"version": "0.0.1",
"description": "The docker image and network to get Jupyter Hub deployed on Code Engine for VEST Workshops. Initially supporting Langchain labs, but possibly expanded in the future.",
"main": "index.js",
"scripts": {
"build": "docker build --tag jupyterhub-server .",
"postbuild": "docker network create jupyterhub-network",
"start": "docker run --name jupyterhub --network jupyterhub-network -v './jupyterhub_config.py:/srv/jupyterhub/jupyterhub_config.py:ro' -v '/var/run/docker.sock:/var/run/docker.sock:rw' -v 'jupyterhub-data:/data' -e DOCKER_NOTEBOOK_IMAGE='vest-langchain-jupyter-notebook' -p 8000:8000 jupyterhub-server"
},
"repository": {
"type": "git",
"url": "https://github.com/krab7191/vest-jupyterhub"
},
"keywords": [
"jupyter hub",
"jupyter notebook",
"jupyter lab",
"jupyter"
],
"author": "Karsten Rabe <karstenrabe91@gmail.com>",
"license": "MIT"
}