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