The day of docker run (note)
Start with the following command
docker run -p 8888:8888 -v ~/dev/ds_python:/work --name my-lab 520b56985511 (image ID)
important point
- Specify the port (-p container port: host port)
- Filesystem mount (-v container working folder: folder created with dockerfile)
- Name the container (--name is optional)
reference
https://datawokagaku.com/startjupyternote/