12 lines
227 B
Bash
12 lines
227 B
Bash
|
#!/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
|