diff --git a/docker/README.md b/docker/README.md new file mode 100644 index 0000000..097f4c5 --- /dev/null +++ b/docker/README.md @@ -0,0 +1,16 @@ +# Learning Docker + +## Definition +- Dockerfile contains a series of instructions for creating a container. +- An instruction in a Dockerfile creates a layer in the image +- A container is a virtual machine that can run independently in a hosting machine. + + +## Resources +The cheatsheet for Dockerfile instructions can be found here: +https://kapeli.com/cheat_sheets/Dockerfile.docset/Contents/Resources/Documents/index + +Cheat sheet for docker commands: [link](docker_cheatsheet.pdf) + +docker beginner tutorial: +https://www.youtube.com/watch?v=pTFZFxd4hOI \ No newline at end of file diff --git a/docker/docker_cheatsheet.pdf b/docker/docker_cheatsheet.pdf new file mode 100644 index 0000000..f21c105 Binary files /dev/null and b/docker/docker_cheatsheet.pdf differ