Our code, Dedalus Project relies on (arrows indicate dependencies of the dependencies)
Stack
See install script
An image is a blob that contains everything you need to run software:
A container is an image running on a computer. It functions as though it is its own computer (though it isn't; it is Not a virtual machine!), and isolates your program.
Like github, dockerhub stores images.
Unlike github, dockerhub is automatically connected to the docker runtime:
please don't run this right now
docker run -it -p 8888:8888 -v $PWD/data:/data -w /data tensorflow/tensorflow:1.13.1-py3-jupyter bash
will just grab this image without you having to do anything!
In [ ]: