13 lines
235 B
Bash
13 lines
235 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# docker volume create ipython-notebooks
|
||
|
|
||
|
docker run \
|
||
|
-d \
|
||
|
-v ipython-notebooks:/notebooks \
|
||
|
-p 8888:8888 \
|
||
|
-e "PASSWORD=geheim" \
|
||
|
--name ipython-notebook \
|
||
|
registry.gitlab.com/wolutator/ipythonwithdatabase:latest
|
||
|
|