Starlight_0208 6fa0951813 Add readme
2023-01-13 15:47:48 +00:00

10 lines
317 B
Plaintext

build image by shell:
docker build -t <author>/jupyter:<tag>
run container:
- First Method
docker volume create jupyter
docker run -itd --name jupyter -p 8888:8888 -v jupyter:/jupyter <author>/jupyter:<tag>
- Second Method
docker run -itd --name jupyter -p 8888:8888 -v /path/to/save:/jupyter <author>/jupyter:<tag>