Docker === Love
Docker can do :allthethings:!
Docker Can Do Everything!*
Improve your process for:
- Testing Dev Tools & Servers WITH VIRTUALLY ZERO risk of messing up dependencies on your PC
- Testing your software
- Makes you write more idempotent, modular code… (I’ll write how to actually realize this in a follow up)
There may seem like a huge volume of new stuff to learn, don’t let that stop you from getting started.
Notes
- If you see a
docker run
command with either options-d
or-it
: _-it
or-i -t
will run the configured command interactively _-d
will start the docker container as a ‘daemon’ aka background service.
EXAMPLES
nginx
Credits: https://dockerfile.github.io/#/nginx Docker will make your life easier throughout the entire SDLC.
- Pretty close