Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 698 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 698 Bytes

docker-anaconda3

Docker image for machine learning in Python3 using anaconda

git config user.name limitlessv
git config user.email [email protected]

$ docker images                     // To view install images
$ docker rmi <IMAGE_NAME>           // To remove an installed image
$ docker ps -a                      // To view all docker containers
$ docker stop <CONTAINER_NAME>      // To stop a docker container
$ docker rm <CONTAINER_NAME>        // To remove a docker container
$ docker exec -it <CONTAINER_NAME> bash    // Execute into container and run bash
* If you want to see the log output from a docker container, omit the -d from run.sh