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