Quick Recap

Let's review what we have covered in this chapter.

We'll cover the following...

Highlights

Another action-packed chapter. You have now learned the major tools in our belt for deploying apps with Docker. Let’s review what we covered in this chapter:

  1. We introduced Docker Machine and used it to create a virtualized Docker-ready instance:

    $ docker-machine create --driver virtualbox local-vm-1
    
  2. We logged onto the new instance using SSH:

    $
...