Search⌘ K
AI Features

Quick Recap

Explore the essential commands and steps for deploying and managing Rails applications using Docker Machine and Swarm. Understand how to create virtual Docker environments, deploy stacks, update apps, and scale services to mimic production setups before moving to cloud deployment.

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:

    $
...