This commit is contained in:
Wolfgang Hottgenroth 2019-01-31 09:03:07 +01:00
parent e9c535c701
commit 5ffb14c5bb
Signed by: wn
GPG Key ID: B586EAFCDF2F65F4
3 changed files with 19 additions and 2 deletions

View File

@ -1,6 +1,8 @@
FROM jupyter/scipy-notebook
RUN \
pip install influxdb \
pip install pymongo
pip install influxdb && \
pip install pymongo && \
fix-permissions $CONDA_DIR && \
fix-permissions /home/$NB_USER

4
build.sh Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
docker build --tag registry.gitlab.com/wolutator/jupyter-scipy-database-extension:latest --tag registry.gitlab.com/wolutator/jupyter-scipy-database-extension:1.0 .

View File

@ -0,0 +1,11 @@
#!/bin/bash
# docker volume create jupyter-data
docker run \
-d \
-v jupyter-data:/home/jovyan/work \
-p 8888:8888 \
--rm \
--name jupyter \
registry.gitlab.com/wolutator/jupyter-scipy-database-extension:latest