What is Docker?

Docker is container management software. In general, software containers allow you to package your application with all dependencies, including the OS, in one package. Your application runs in isolation in the container in which it is packaged. This reduces discrepancies in environments when developing, testing, and deploying. Since all the dependencies for your application are already resolved and packaged with it, you generally do not run into situations where your application ran fine in a dev/test environment, but failed in production—maybe because some of the dependencies were not met. For example, even if you have developed and tested in the same OS version, in production some of the dependencies may fail because of ...

Get Java EE 8 Development with Eclipse now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.