Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Docker

sjonnet19
September 24, 2014

 Docker

sjonnet19

September 24, 2014
Tweet

More Decks by sjonnet19

Other Decks in Technology

Transcript

  1. Configure once... run anywhere • Make the entire lifecycle more

    efficient, consistent, and repeatable • Increase the quality of code produced by developers • Eliminate inconsistencies between development, test, production, and customer environments • Support segregation of duties • Significantly improves the speed and reliability of continuous deployment and continuous integration systems • Because the containers are so lightweight, address significant performance, costs, deployment, and portability issues normally associated with VMs
  2. Containers • Run everywhere • Run anything • It's a

    lightweight VM • Own process space • Separate network interface • It's like chroot on steriods
  3. Dockerfile • vim Dockerfile • sudo docker build -t magneto/redis

    . • sudo docker run --name redis -d magneto/redis