Add readme

This commit is contained in:
Starlight_0208 2023-01-13 15:47:48 +00:00
parent fbeea0db38
commit 6fa0951813

10
README Normal file
View File

@ -0,0 +1,10 @@
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>