Docker

The gadget spec URL could not be found

What is Docker

posted May 7, 2016, 5:23 AM by Sachchida Ojha   [ updated May 7, 2016, 5:40 AM ]

Docker is an open-source technology that that allows you to build, run, test, and deploy distributed applications inside software containers. It allows you to package a piece of software in a standardized unit for software development, containing everything the software needs to run: code, runtime, system tools, system libraries, etc. Docker enables you to quickly, reliably, and consistently deploy applications regardless of environment.

The gadget spec URL could not be found
Docker Benefits:

Ship More Software Faster
Docker users on average ship software 7X more frequently than non-Docker users. Docker enables developers to ship isolated services as often as needed by eliminating the headaches of software dependencies.

Improve Developer Productivity
Docker reduces the time spent setting up new environments or troubleshooting differences between environments.

Seamlessly Move Applications
Dockerized applications can be seamlessly moved from local development machines to production deployments on AWS.

Standardize Application Operations
Small containerized applications make it easy to deploy, identify issues, and roll back for remediation.
The gadget spec URL could not be found
Docker Use Cases
Continuous Integration & Delivery
Accelerate application delivery by standardizing environments and removing conflicts between language stacks and versions.

Data Processing
Provide big data processing as a service. Package data and analytics packages into portable containers that can be executed by non-technical users

Containers as a Service
Build and ship distributed applications with content and infrastructure that is IT-managed and secured.
The gadget spec URL could not be found

Container Benefits

posted May 7, 2016, 5:21 AM by Sachchida Ojha   [ updated May 7, 2016, 5:41 AM ]

1. Environment Consistency
Containers enable portability and help reduce the organizational and technical frictions of moving an application through the development, testing, and production life-cycle. Containers encapsulate all the necessary application files and software dependencies and serve as a building block that can be deployed on any compute resource regardless of software, operating system, or hardware configurations (e.g., you can run the same container on your Ubuntu laptop and on your Red Hat Enterprise Linux production servers). Whatever you package as a container locally will deploy and run the same way whether in testing or production. This is beneficial for you and your organization because you can deploy an application reliably and consistently regardless of environment. This helps you avoid manually configuring each server and allows you to release new features faster.

2. Operational Efficiency
Containers can help you get more from your computing resources by allowing to you easily run multiple applications on the same instance. With containers, you can specify the exact amount of memory, disk space, and CPU to be used by a container on an instance. Containers have fast boot times because each container is only a process on the operating system running an application and its dependencies. This reduced footprint enables you to quickly create and terminate applications or tasks encapsulated in a container allowing you to rapidly scale applications up and down. You can use blue-green deployment patterns to rollout new application versions because the entire application and all its dependencies are contained in an image. 
The gadget spec URL could not be found
Containers also provide process isolation, which allows you to put each application and its dependencies into a separate container and run them on the same instance. There are no shared dependencies or incompatibilities because each container is isolated from the other (e.g., you can run two containers that use different library versions on the same Amazon EC2 instance).

You can also create container images that serve as the base for other images. Operations teams can create a base image composed of the operating system, configurations, and the various utilities they want. Development teams can then build their application on top of the base image. This allows you to avoid the complexities of server configuration.

3. Developer Productivity

Containers increase developer productivity by removing cross-service dependencies and conflicts. Each application component can be broken into different containers running a different microservice. Containers are isolated from one another, so you don't have to worry about libraries or dependencies being in sync for each service. Developers can independently upgrade each service because there are no library conflicts.

4. Version Control

Containers allow you to track versions of your application code and their dependencies.Docker container images have a manifest file (Dockerfile) that allows you to easily maintain and track versions of a container, inspect differences between versions, and roll-back to previous versions.
The gadget spec URL could not be found

What are Containers?

posted May 7, 2016, 5:12 AM by Sachchida Ojha   [ updated May 7, 2016, 5:42 AM ]

Containers are a method of operating system virtualization that allow you to run an application and its dependencies in resource-isolated processes. Containers allow you to easily package an application's code, configurations, and dependencies into easy to use building blocks that deliver environmental consistency, operational efficiency, developer productivity, and version control. Containers can help ensure that applications deploy quickly, reliably, and consistently regardless of deployment environment. Containers also give you more granular control over resources giving your infrastructure improved efficiency.
The gadget spec URL could not be found

1-3 of 3