Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 502 Bytes

README.md

File metadata and controls

36 lines (30 loc) · 502 Bytes

Docker for Data Science

cd /path/to/docker-ds

build

docker build -f Dockerfile -t my-ds-docker .

run

docker run -p 8888:8888 my-ds-docker

sharing folder between host and docker

docker run -p 8888:8888 -v /path/to/docker-ds/code:/code my-ds-docker

interactive

docker container ls --all
docker exec -it containerID /bin/bash

stop

docker stop containerID

clean

docker image ls
docker system prune -a