SlideShare uma empresa Scribd logo
1 de 28
© 2015 IBM Corporation
IBM Bluemix
Kyle Brown
Distinguished Engineer
IBM Cloud Lab Services
Docker and IBM Bluemix
May 2015
© 2015 IBM Corporation
Agenda
• What is Docker
• Docker and Bluemix
• What’s next?
© 2015 IBM Corporation
IBM Bluemix
What is Docker?
© 2015 IBM Corporation
Static website Web frontendUser DB Queue Analytics DB
Development
VM
QA server Public Cloud Contributor’s
laptop
4
Docker is a shipping container system for codeMultiplicityofStacksMultiplicityofhardware
environments
Production
Cluster
Customer Data
Center
Doservicesandapps
interactappropriately?
CanImigratesmoothlyand
quickly
…that can be manipulated using
standard operations and run
consistently on virtually any
hardware platform
An engine that enables any
payload to be encapsulated as
a lightweight, portable, self-
sufficient container…
© 2015 IBM Corporation
Docker Engine
• Open source project
• Supported on every major Linux distro (MS Windows in 2015)
• Client-server architecture with daemon deployed on physical or virtual host
• Uses Linux kernel cgroups and namespaces for process resource management and
isolation
• Uses copy-on-write filesystem for git-like image change management
A portable, lightweight application runtime and packaging tool
built on top of kernel container primitives
Build Ship Run
Docker Engine
© 2015 IBM Corporation
Containers
AppA’
Host OS
Server
Bins/Libs
AppA
Bins/Libs
AppB
AppB’
AppB’
AppB’
Container
What is a Container
• An isolated user space within a running Linux OS
• Shared kernel across containers
• Direct device access
• All packages and data in an isolated run-time, saved as a filesystem.
• Resource management implemented with cgroups
• Resource isolation through namespaces
Run
© 2015 IBM Corporation
Docker Terminology
Image – layered file system where each layer references the layer below
Dockerfile – build script that defines:
• an existing image as the starting point
• a set of instructions to augment that image (each of which results in a new
layer in the file system)
• meta-data such as the ports exposed
• the command to execute when the image is run
Container – runtime instance of an image plus a read/write layer
bootfs (Kernel)
ubuntu:14.04 debian:wheezy
ibm-jre:8.0
websphere-liberty:8.5.5 websphere-liberty:beta
app-a app-b app-c app-eapp-d
c1 c2 c3 c4 c5 c6
mongo:latest
c7 c8
= container
= image
© 2015 IBM Corporation
Docker Containers: Shared / Layered FS
Docker uses a copy-on-write (union) filesystem
New files(& edits) are only visible to current/above layers
Layers allow for reuse
• More containers per host
• Faster start-up/download time – base layers are "cached"
Images
• Tarball of layers (each layer is a tarball)
8
Filesystem
Base OS / Kernel
Fedora Ubuntu
tomcat tomcatliberty
CNTR1 CNTR2 CNTR3 CNTR4
app1 app2 app4app3
Layer
Layer
Layer
© 2015 IBM Corporation
Other important concepts
• Container Group
• A group of containers, which all share the same image.
• Docker Registry
• A registry server for Docker that helps hosting and delivery of repositories and images.
• Repository
• Set of images on local Docker or registry server.
© 2015 IBM Corporation
Docker Orchestration projects
Docker Machine
Provision Docker daemon onto hosts
Common CLI for all Docker hosts
10 integrations, including AWS, VMware…
Docker Swarm
Cluster Docker hosts into a single pool
Schedule Docker container workloads based on resource
availability
Docker Compose
Define multi-container distributed apps
Control all containers via single command
$ machine create
© 2015 IBM Corporation
Docker Hub
Ship
Enable sharing and collab of Docker Images
Private and public repositories of images
Certified base images by ISVs
Docker Hub
$ docker push $ docker pull
© 2015 IBM Corporation
Why should you care about Containers?
• Demand for Increased Application Development Efficiency
• Enable Continuous Integration/Continuous Delivery
• Developer Laptops, through automated test, to production, and through scaling without
modification
• DevOps Requires Improved Deployment Efficiency
• Higher Density of Compute Resources (CPU, Memory, Storage)
• Hybrid Cloud and Choice Require Portability
• Cross Cloud Deployment - move the same application across multiple clouds.
• Eliminate “lock-in”, become a “Cloud Broker”
12
Pain points User scenarios How this offering helps
Need resources faster Get a working environment up and running
in minutes, not hours or weeks
Users can instantiate new container instances in
seconds with the consistent experience working
directly with Docker
Innovation requires agility and
DevOps
Continuous delivery pipeline IBM Containers integrates with Bluemix apps
including a continuous delivery pipeline, partnered
with the fast deployments of containers
Ability to migrate workload from on-
prem to off-prem infrastructure
Changes made on developer’s local image
is ready to deploy to production cloud
Portability as images can be developed on a local
workstation, tested in a staging cloud on-prem, and
finally to the production off-prem cloud
Environment to facilitate incremental
production deployment
Business wants to deploy in a phased
approach to validate the expected
experience of the new version
Users can deploy new releases in a controlled
manner enabling them to monitor the performance
and behavior with the ability to roll back if needed
© 2015 IBM Corporation
IBM Bluemix
IBM Bluemix and the
Container Service
© 2015 IBM Corporation
Docker Containers simplifies cloud portability
Developers & SysAdmins love the flexibility and standardization of Docker
Standardization  Application portability
Package, ship, and run applications anywhere
The Docker Hub Registry has 5,000+ "Dockerized" applications
Lightweight
Containers are “light” users of system resources, smaller than VMs,
start up much faster, and have better performance
Ecosystem-friendly
A new industry standard, with a vibrant ecosystem of partners.
730+ community contributors; 50,000 third-party Docker projects on GitHub
User-friendly
Developers build with ease and ship higher-quality applications
SysAdmins deploy workloads based on business priorities and policies.
"Flexibility and portability are becoming paramount in developing, deploying and managing
applications in the cloud, particularly at scale and among large enterprise organizations,"
Jay Lyman, a senior analyst for enterprise software at 451 Research, told Linux.com.1 1Linux.com
© 2015 IBM Corporation
IBM Container Runtime on Bluemix
 Automate the build
of Docker images
 Manage and
distribute Docker
images in private
image registries
 Easily host
containers in the
cloud
 Scale and auto-
recovery built-in
 Logging and
Monitoring built-in
© 2015 IBM Corporation
Local Development with Containers
IBM Container
Service
IBM Container Image
Registry Service
Containers support portability making them
ideal for local development and hybrid cloud
deployment
© 2015 IBM Corporation
Develop/Test locally while using Bluemix Services
boot2docker
(Vagrant with Docker host)
Leverage portability of containers and convenience of Bluemix
services.
© 2015 IBM Corporation
ICE (IBM Containers Extension) Tool
ICE both wraps the docker command line tool for managing local docker images and
containers and also adds additional functionality specific to the Bluemix docker hosting
Including:
Management of Floating IP addresses (request/bind/undbind/list) and routes
Pushing local docker images to the registry in Bluemix
Building and managing container groups
managing/monitoring state of containers running in Bluemix
ICE is downloaded from https://www.ng.bluemix.net/docs/cli/cli.html#container_cli
Run ice commands as you would docker commands:
sudo ice login -a https://api.ng.bluemix.net -H https://api-
ice.ng.bluemix.net/v2/containers -R registry-ice.ng.bluemix.net
sudo ice ps – shows the running docker containers on Bluemix
sudo ice –help will list out all commands
© 2015 IBM Corporation
Simple ICE demonstration
We’ll start with creating a simple Dockerfile:
FROM registry-ice.ng.bluemix.net/ibmnode:latest
ADD app.js /app.js
EXPOSE 9085
CMD ["node", "app.js"]
Steps
1. Pull image from the bluemix registry (optional)
2. Build image locally
3. Tag the image
4. Push the image to bluemix
5. Validate that the image is uploaded correctly
6. Run the container in bluemix
7. Bind a floating IP address to the running container
© 2015 IBM Corporation
Docker and WebSphere Application Server
Support for WebSphere Application Server Liberty Profile
and Full Profile running under Docker
WebSphere Application Server Liberty Profile image on IBM Bluemix Registry
Dockerfiles on WASDev to:
• Upgrade the Docker Hub image with a Liberty Core, Base or ND license
• Build your own Docker image for Liberty or Full Profile
2
© 2015 IBM Corporation
Deploying a WebSphere Application
Build a layer on top of the image containing the application
Dockerfile
FROM registry-ice.ng.bluemix.net/ibmliberty:latest
ADD app.war /opt/ibm/wlp/usr/servers/defaultServer/dropins/
ENV LICENSE accept
sudo ice –local build –t=“kbrown/helloliberty” .
sudo ice –local run –i -t –p=80:9080 –p=443:9443 “kbrown/helloliberty”
Modifying the application requires rebuilding and redeploying just the application layer
2
© 2015 IBM Corporation
IBM Bluemix
What’s next?
© 2015 IBM Corporation
Moving from monolithic applications to microservices
23
Monolithic app Micro services
Scaling Scaling
© 2015 IBM Corporation
IBM and Docker Partnership
• Strategic partnership announced December, 2014
https://www-03.ibm.com/press/us/en/pressrelease/45597.wss
• Objective: Deliver next generation enterprise-grade, portable, distributed
applications that are composed of interoperable Docker containers
• Enables hybrid cloud use cases for the enterprise
Initiatives Underway
• IBM Enterprise Containers on Bluemix enables enterprises to launch Docker containers
to automate application deployment on or off premise
• IBM UrbanCode automates the deployment of multiple Docker containers to various
dev/test and staging environments, as part of the DevOps pipeline
• PureApplication Systems & Services builds, deploys and runs Pure patterns with Docker
containers
• Docker Hub Enterprise (DHE) integration
• Extend IBM DevOps and IBM cloud solutions by integrating with and reselling
Docker Hub Enterprise software & support
24
© 2015 IBM Corporation
IBM MobileFirst Platform Foundation
• IBM® MobileFirst Platform Foundation, formerly known as
IBM Worklight, helps organizations extend their business
to mobile devices. It provides an open and comprehensive
platform to not only build, but test, run and manage native,
hybrid and mobile web apps.
• It is available as an on-premise or private cloud solutions
• Why run MFP Foundation solution on Docker?
 Easy installation
 Quick, cloud friendly development
 An agile hosting solution
 Sharing between team members
25
© 2015 IBM Corporation
MFP Foundation in a Bluemix Container
26
Server Container
MFP Server v6.3
Admin Console
Runtime
App1 App2 Add
1
Add
2
SQL Database
Service
admin
wl
Bluemix Helper
Application
bind
copy
VCAP_SERVICES
reports
IBM® Bluemix™
© 2015 IBM Corporation
How is this different from Virtualization?
Containers & VMs
Understanding both technologies
27
Virtualization Approach
Build
•Package the (guest) operating system
•Add required files and programs
Deploy:
•This entire “package” can be moved and
reconfigured across different physical machine
Change:
•Change details of the software within the virtual
machine and then create a new virtual machine.
Value:
•Traditional cloud-enabled workloads
Container Approach
Build:
• Software stack can be individually packaged
Deploy:
• Software stack in a Docker container can be easily
moved between deployment environments
Change:
• Recomposed software into new stacks
Value:
• Built-on-the-cloud applications
• Loosely coupled, elastic architectures
Standardization and choice for delivering the best business value
© 2015 IBM Corporation
Support for Docker in other Clouds
Amazon
• Amazon EC2 Container Service supports the Docker platform and enables you to run and
manage Docker containers across a cluster of Amazon EC2 instances.
• Each EC2 instance in a cluster managed by EC2 Container Service runs a Docker daemon, so
whatever application you package as a container locally will deploy and run on EC2 Container
Service without the need for any configuration changes.
Google
• Google container Engine allows you to run and manage Docker containers on Google's Cloud
Platform's VMs (it is in alpha release)
• Container Engine uses Google Compute Engine instances for the nodes in the cluster and,
similar to Amazon, you are billed for those instances/resources
Microsoft
• Docker Engine open source runtime will work with the next version of Windows Server and
Docker Engine images for Windows Server will be available in the Docker Hub.
• The Docker Hub will also be integrated directly into Azure so that it is accessible through the
Azure Management Portal and Azure Gallery
28

Mais conteúdo relacionado

Mais procurados

2014, April 15, Atlanta Java Users Group
2014, April 15, Atlanta Java Users Group2014, April 15, Atlanta Java Users Group
2014, April 15, Atlanta Java Users GroupTodd Fritz
 
DockerCon 15 Keynote - Day 2
DockerCon 15 Keynote - Day 2DockerCon 15 Keynote - Day 2
DockerCon 15 Keynote - Day 2Docker, Inc.
 
Hypervisor "versus" Linux Containers with Docker !
Hypervisor "versus" Linux Containers with Docker !Hypervisor "versus" Linux Containers with Docker !
Hypervisor "versus" Linux Containers with Docker !Francisco Gonçalves
 
Top 5 benefits of docker
Top 5 benefits of dockerTop 5 benefits of docker
Top 5 benefits of dockerJohn Zaccone
 
Containerized Cloud Computing - Redhat
Containerized Cloud Computing - RedhatContainerized Cloud Computing - Redhat
Containerized Cloud Computing - RedhatAmazon Web Services
 
.docker : how to deploy Digital Experience in a container drinking a cup of c...
.docker : how to deploy Digital Experience in a container drinking a cup of c....docker : how to deploy Digital Experience in a container drinking a cup of c...
.docker : how to deploy Digital Experience in a container drinking a cup of c...Andrea Fontana
 
DockerCon SF 2015: How to Build a Secure DevOps Environment for the Government
DockerCon SF 2015: How to Build a Secure DevOps Environment for the GovernmentDockerCon SF 2015: How to Build a Secure DevOps Environment for the Government
DockerCon SF 2015: How to Build a Secure DevOps Environment for the GovernmentDocker, Inc.
 
IBM WebSphere Liberty and Docker Deep Dive
IBM WebSphere Liberty and Docker Deep DiveIBM WebSphere Liberty and Docker Deep Dive
IBM WebSphere Liberty and Docker Deep DiveDavid Currie
 
Devops lifecycle with Kabanero Appsody, Codewind, Tekton
Devops lifecycle with Kabanero Appsody, Codewind, TektonDevops lifecycle with Kabanero Appsody, Codewind, Tekton
Devops lifecycle with Kabanero Appsody, Codewind, TektonWinton Winton
 
Docker Containers Deep Dive
Docker Containers Deep DiveDocker Containers Deep Dive
Docker Containers Deep DiveWill Kinard
 
Olivier meetup-boston-2013-jan-21-v2
Olivier meetup-boston-2013-jan-21-v2Olivier meetup-boston-2013-jan-21-v2
Olivier meetup-boston-2013-jan-21-v2Olivier Eeckhoutte
 
Containers, microservices and serverless for realists
Containers, microservices and serverless for realistsContainers, microservices and serverless for realists
Containers, microservices and serverless for realistsKarthik Gaekwad
 
Containers and microservices for realists
Containers and microservices for realistsContainers and microservices for realists
Containers and microservices for realistsKarthik Gaekwad
 
Containers 101 - CloudCamp London
Containers 101 - CloudCamp LondonContainers 101 - CloudCamp London
Containers 101 - CloudCamp LondonEd Hoppitt
 
Exploring the Open Source Linux Ecosystem
Exploring the Open Source Linux EcosystemExploring the Open Source Linux Ecosystem
Exploring the Open Source Linux EcosystemIBM
 
Docker Basic to Advance
Docker Basic to AdvanceDocker Basic to Advance
Docker Basic to AdvanceParas Jain
 
Docker and Microservice
Docker and MicroserviceDocker and Microservice
Docker and MicroserviceSamuel Chow
 
Taking the Next Hot Mobile Game Live with Docker and IBM SoftLayer
Taking the Next Hot Mobile Game Live with Docker and IBM SoftLayerTaking the Next Hot Mobile Game Live with Docker and IBM SoftLayer
Taking the Next Hot Mobile Game Live with Docker and IBM SoftLayerDaniel Krook
 

Mais procurados (20)

2014, April 15, Atlanta Java Users Group
2014, April 15, Atlanta Java Users Group2014, April 15, Atlanta Java Users Group
2014, April 15, Atlanta Java Users Group
 
DockerCon 15 Keynote - Day 2
DockerCon 15 Keynote - Day 2DockerCon 15 Keynote - Day 2
DockerCon 15 Keynote - Day 2
 
Hypervisor "versus" Linux Containers with Docker !
Hypervisor "versus" Linux Containers with Docker !Hypervisor "versus" Linux Containers with Docker !
Hypervisor "versus" Linux Containers with Docker !
 
Top 5 benefits of docker
Top 5 benefits of dockerTop 5 benefits of docker
Top 5 benefits of docker
 
Containerized Cloud Computing - Redhat
Containerized Cloud Computing - RedhatContainerized Cloud Computing - Redhat
Containerized Cloud Computing - Redhat
 
.docker : how to deploy Digital Experience in a container drinking a cup of c...
.docker : how to deploy Digital Experience in a container drinking a cup of c....docker : how to deploy Digital Experience in a container drinking a cup of c...
.docker : how to deploy Digital Experience in a container drinking a cup of c...
 
DockerCon SF 2015: How to Build a Secure DevOps Environment for the Government
DockerCon SF 2015: How to Build a Secure DevOps Environment for the GovernmentDockerCon SF 2015: How to Build a Secure DevOps Environment for the Government
DockerCon SF 2015: How to Build a Secure DevOps Environment for the Government
 
IBM WebSphere Liberty and Docker Deep Dive
IBM WebSphere Liberty and Docker Deep DiveIBM WebSphere Liberty and Docker Deep Dive
IBM WebSphere Liberty and Docker Deep Dive
 
Devops lifecycle with Kabanero Appsody, Codewind, Tekton
Devops lifecycle with Kabanero Appsody, Codewind, TektonDevops lifecycle with Kabanero Appsody, Codewind, Tekton
Devops lifecycle with Kabanero Appsody, Codewind, Tekton
 
Docker Containers Deep Dive
Docker Containers Deep DiveDocker Containers Deep Dive
Docker Containers Deep Dive
 
Docker In Cloud
Docker In CloudDocker In Cloud
Docker In Cloud
 
Olivier meetup-boston-2013-jan-21-v2
Olivier meetup-boston-2013-jan-21-v2Olivier meetup-boston-2013-jan-21-v2
Olivier meetup-boston-2013-jan-21-v2
 
Containers, microservices and serverless for realists
Containers, microservices and serverless for realistsContainers, microservices and serverless for realists
Containers, microservices and serverless for realists
 
Docker Datacenter - CaaS
Docker Datacenter - CaaSDocker Datacenter - CaaS
Docker Datacenter - CaaS
 
Containers and microservices for realists
Containers and microservices for realistsContainers and microservices for realists
Containers and microservices for realists
 
Containers 101 - CloudCamp London
Containers 101 - CloudCamp LondonContainers 101 - CloudCamp London
Containers 101 - CloudCamp London
 
Exploring the Open Source Linux Ecosystem
Exploring the Open Source Linux EcosystemExploring the Open Source Linux Ecosystem
Exploring the Open Source Linux Ecosystem
 
Docker Basic to Advance
Docker Basic to AdvanceDocker Basic to Advance
Docker Basic to Advance
 
Docker and Microservice
Docker and MicroserviceDocker and Microservice
Docker and Microservice
 
Taking the Next Hot Mobile Game Live with Docker and IBM SoftLayer
Taking the Next Hot Mobile Game Live with Docker and IBM SoftLayerTaking the Next Hot Mobile Game Live with Docker and IBM SoftLayer
Taking the Next Hot Mobile Game Live with Docker and IBM SoftLayer
 

Semelhante a IBM Container Service Overview

.docker : How to deploy Digital Experience in a container, drinking a cup of ...
.docker : How to deploy Digital Experience in a container, drinking a cup of ....docker : How to deploy Digital Experience in a container, drinking a cup of ...
.docker : How to deploy Digital Experience in a container, drinking a cup of ...ICON UK EVENTS Limited
 
docker : how to deploy Digital Experience in a container drinking a cup of co...
docker : how to deploy Digital Experience in a container drinking a cup of co...docker : how to deploy Digital Experience in a container drinking a cup of co...
docker : how to deploy Digital Experience in a container drinking a cup of co...Matteo Bisi
 
IBM Cloud UCC Talk, 22nd November 2017
IBM Cloud UCC Talk, 22nd November 2017IBM Cloud UCC Talk, 22nd November 2017
IBM Cloud UCC Talk, 22nd November 2017Michael O'Sullivan
 
Cloud foundry Docker Openstack - Leading Open Source Triumvirate
Cloud foundry Docker Openstack - Leading Open Source TriumvirateCloud foundry Docker Openstack - Leading Open Source Triumvirate
Cloud foundry Docker Openstack - Leading Open Source TriumvirateAnimesh Singh
 
Elevating your Continuous Delivery Strategy Above the Rolling Clouds
Elevating your Continuous Delivery Strategy Above the Rolling CloudsElevating your Continuous Delivery Strategy Above the Rolling Clouds
Elevating your Continuous Delivery Strategy Above the Rolling CloudsMichael Elder
 
Docker OpenStack Cloud Foundry
Docker OpenStack Cloud FoundryDocker OpenStack Cloud Foundry
Docker OpenStack Cloud FoundryAnimesh Singh
 
WebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and DockerWebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and DockerDavid Currie
 
Docker - Portable Deployment
Docker - Portable DeploymentDocker - Portable Deployment
Docker - Portable Deploymentjavaonfly
 
Docker Overview - Rise of the Containers
Docker Overview - Rise of the ContainersDocker Overview - Rise of the Containers
Docker Overview - Rise of the ContainersRyan Hodgin
 
Docker 101 - Nov 2016
Docker 101 - Nov 2016Docker 101 - Nov 2016
Docker 101 - Nov 2016Docker, Inc.
 
Docker dev ops for cd meetup 12-14
Docker dev ops for cd meetup 12-14Docker dev ops for cd meetup 12-14
Docker dev ops for cd meetup 12-14Simon Storm
 
How do you deliver your applications to the cloud?
How do you deliver your applications to the cloud?How do you deliver your applications to the cloud?
How do you deliver your applications to the cloud?Michael Elder
 
Highly available nodejs
Highly available nodejsHighly available nodejs
Highly available nodejspfremm
 
WebSphere 20th - Application modernization
WebSphere 20th - Application modernizationWebSphere 20th - Application modernization
WebSphere 20th - Application modernizationArthur De Magalhaes
 
WebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and DockerWebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and DockerDavid Currie
 

Semelhante a IBM Container Service Overview (20)

.docker : How to deploy Digital Experience in a container, drinking a cup of ...
.docker : How to deploy Digital Experience in a container, drinking a cup of ....docker : How to deploy Digital Experience in a container, drinking a cup of ...
.docker : How to deploy Digital Experience in a container, drinking a cup of ...
 
docker : how to deploy Digital Experience in a container drinking a cup of co...
docker : how to deploy Digital Experience in a container drinking a cup of co...docker : how to deploy Digital Experience in a container drinking a cup of co...
docker : how to deploy Digital Experience in a container drinking a cup of co...
 
IBM Cloud UCC Talk, 22nd November 2017
IBM Cloud UCC Talk, 22nd November 2017IBM Cloud UCC Talk, 22nd November 2017
IBM Cloud UCC Talk, 22nd November 2017
 
Cloud foundry Docker Openstack - Leading Open Source Triumvirate
Cloud foundry Docker Openstack - Leading Open Source TriumvirateCloud foundry Docker Openstack - Leading Open Source Triumvirate
Cloud foundry Docker Openstack - Leading Open Source Triumvirate
 
Elevating your Continuous Delivery Strategy Above the Rolling Clouds
Elevating your Continuous Delivery Strategy Above the Rolling CloudsElevating your Continuous Delivery Strategy Above the Rolling Clouds
Elevating your Continuous Delivery Strategy Above the Rolling Clouds
 
Docker OpenStack Cloud Foundry
Docker OpenStack Cloud FoundryDocker OpenStack Cloud Foundry
Docker OpenStack Cloud Foundry
 
WebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and DockerWebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and Docker
 
SS Introduction to Docker
SS Introduction to DockerSS Introduction to Docker
SS Introduction to Docker
 
Docker slides
Docker slidesDocker slides
Docker slides
 
docker
dockerdocker
docker
 
Docker - Portable Deployment
Docker - Portable DeploymentDocker - Portable Deployment
Docker - Portable Deployment
 
Informix on Docker Hub
Informix on Docker HubInformix on Docker Hub
Informix on Docker Hub
 
Docker Overview - Rise of the Containers
Docker Overview - Rise of the ContainersDocker Overview - Rise of the Containers
Docker Overview - Rise of the Containers
 
Docker
DockerDocker
Docker
 
Docker 101 - Nov 2016
Docker 101 - Nov 2016Docker 101 - Nov 2016
Docker 101 - Nov 2016
 
Docker dev ops for cd meetup 12-14
Docker dev ops for cd meetup 12-14Docker dev ops for cd meetup 12-14
Docker dev ops for cd meetup 12-14
 
How do you deliver your applications to the cloud?
How do you deliver your applications to the cloud?How do you deliver your applications to the cloud?
How do you deliver your applications to the cloud?
 
Highly available nodejs
Highly available nodejsHighly available nodejs
Highly available nodejs
 
WebSphere 20th - Application modernization
WebSphere 20th - Application modernizationWebSphere 20th - Application modernization
WebSphere 20th - Application modernization
 
WebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and DockerWebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and Docker
 

Mais de Kyle Brown

Transforming to Microservices
Transforming to MicroservicesTransforming to Microservices
Transforming to MicroservicesKyle Brown
 
Cloud adoption patterns
Cloud adoption patternsCloud adoption patterns
Cloud adoption patternsKyle Brown
 
Cloud adoption patterns April 11 2016
Cloud adoption patterns April 11 2016Cloud adoption patterns April 11 2016
Cloud adoption patterns April 11 2016Kyle Brown
 
Application Considerations for Cloud
Application Considerations for CloudApplication Considerations for Cloud
Application Considerations for CloudKyle Brown
 
How Bluemix and IDS can help in a Natural Disaster
How Bluemix and IDS can help in a Natural DisasterHow Bluemix and IDS can help in a Natural Disaster
How Bluemix and IDS can help in a Natural DisasterKyle Brown
 
IBM Iot Foundation
IBM Iot FoundationIBM Iot Foundation
IBM Iot FoundationKyle Brown
 
Bluemix DevOps Meetup
Bluemix DevOps MeetupBluemix DevOps Meetup
Bluemix DevOps MeetupKyle Brown
 
Patterns ofbuildinglegos
Patterns ofbuildinglegosPatterns ofbuildinglegos
Patterns ofbuildinglegosKyle Brown
 

Mais de Kyle Brown (9)

Transforming to Microservices
Transforming to MicroservicesTransforming to Microservices
Transforming to Microservices
 
Cloud adoption patterns
Cloud adoption patternsCloud adoption patterns
Cloud adoption patterns
 
Cloud adoption patterns April 11 2016
Cloud adoption patterns April 11 2016Cloud adoption patterns April 11 2016
Cloud adoption patterns April 11 2016
 
Application Considerations for Cloud
Application Considerations for CloudApplication Considerations for Cloud
Application Considerations for Cloud
 
How Bluemix and IDS can help in a Natural Disaster
How Bluemix and IDS can help in a Natural DisasterHow Bluemix and IDS can help in a Natural Disaster
How Bluemix and IDS can help in a Natural Disaster
 
IBM Iot Foundation
IBM Iot FoundationIBM Iot Foundation
IBM Iot Foundation
 
Bluemix DevOps Meetup
Bluemix DevOps MeetupBluemix DevOps Meetup
Bluemix DevOps Meetup
 
Patterns ofbuildinglegos
Patterns ofbuildinglegosPatterns ofbuildinglegos
Patterns ofbuildinglegos
 
A05
A05A05
A05
 

Último

定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一Fs
 
Top 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptxTop 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptxDyna Gilbert
 
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)Dana Luther
 
Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Paul Calvano
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012rehmti665
 
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书zdzoqco
 
Magic exist by Marta Loveguard - presentation.pptx
Magic exist by Marta Loveguard - presentation.pptxMagic exist by Marta Loveguard - presentation.pptx
Magic exist by Marta Loveguard - presentation.pptxMartaLoveguard
 
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Lucknow
 
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一Fs
 
Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170Sonam Pathan
 
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一z xss
 
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)Christopher H Felton
 
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170Sonam Pathan
 
Film cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasaFilm cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasa494f574xmv
 
Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...Excelmac1
 
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作ys8omjxb
 

Último (20)

定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
 
Top 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptxTop 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptx
 
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
 
Hot Sexy call girls in Rk Puram 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in  Rk Puram 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in  Rk Puram 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Rk Puram 🔝 9953056974 🔝 Delhi escort Service
 
Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
 
Model Call Girl in Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in  Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in  Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
 
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
 
Magic exist by Marta Loveguard - presentation.pptx
Magic exist by Marta Loveguard - presentation.pptxMagic exist by Marta Loveguard - presentation.pptx
Magic exist by Marta Loveguard - presentation.pptx
 
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
 
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
 
Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170
 
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
 
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
 
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
 
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
 
Film cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasaFilm cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasa
 
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
 
Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...
 
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
 

IBM Container Service Overview

  • 1. © 2015 IBM Corporation IBM Bluemix Kyle Brown Distinguished Engineer IBM Cloud Lab Services Docker and IBM Bluemix May 2015
  • 2. © 2015 IBM Corporation Agenda • What is Docker • Docker and Bluemix • What’s next?
  • 3. © 2015 IBM Corporation IBM Bluemix What is Docker?
  • 4. © 2015 IBM Corporation Static website Web frontendUser DB Queue Analytics DB Development VM QA server Public Cloud Contributor’s laptop 4 Docker is a shipping container system for codeMultiplicityofStacksMultiplicityofhardware environments Production Cluster Customer Data Center Doservicesandapps interactappropriately? CanImigratesmoothlyand quickly …that can be manipulated using standard operations and run consistently on virtually any hardware platform An engine that enables any payload to be encapsulated as a lightweight, portable, self- sufficient container…
  • 5. © 2015 IBM Corporation Docker Engine • Open source project • Supported on every major Linux distro (MS Windows in 2015) • Client-server architecture with daemon deployed on physical or virtual host • Uses Linux kernel cgroups and namespaces for process resource management and isolation • Uses copy-on-write filesystem for git-like image change management A portable, lightweight application runtime and packaging tool built on top of kernel container primitives Build Ship Run Docker Engine
  • 6. © 2015 IBM Corporation Containers AppA’ Host OS Server Bins/Libs AppA Bins/Libs AppB AppB’ AppB’ AppB’ Container What is a Container • An isolated user space within a running Linux OS • Shared kernel across containers • Direct device access • All packages and data in an isolated run-time, saved as a filesystem. • Resource management implemented with cgroups • Resource isolation through namespaces Run
  • 7. © 2015 IBM Corporation Docker Terminology Image – layered file system where each layer references the layer below Dockerfile – build script that defines: • an existing image as the starting point • a set of instructions to augment that image (each of which results in a new layer in the file system) • meta-data such as the ports exposed • the command to execute when the image is run Container – runtime instance of an image plus a read/write layer bootfs (Kernel) ubuntu:14.04 debian:wheezy ibm-jre:8.0 websphere-liberty:8.5.5 websphere-liberty:beta app-a app-b app-c app-eapp-d c1 c2 c3 c4 c5 c6 mongo:latest c7 c8 = container = image
  • 8. © 2015 IBM Corporation Docker Containers: Shared / Layered FS Docker uses a copy-on-write (union) filesystem New files(& edits) are only visible to current/above layers Layers allow for reuse • More containers per host • Faster start-up/download time – base layers are "cached" Images • Tarball of layers (each layer is a tarball) 8 Filesystem Base OS / Kernel Fedora Ubuntu tomcat tomcatliberty CNTR1 CNTR2 CNTR3 CNTR4 app1 app2 app4app3 Layer Layer Layer
  • 9. © 2015 IBM Corporation Other important concepts • Container Group • A group of containers, which all share the same image. • Docker Registry • A registry server for Docker that helps hosting and delivery of repositories and images. • Repository • Set of images on local Docker or registry server.
  • 10. © 2015 IBM Corporation Docker Orchestration projects Docker Machine Provision Docker daemon onto hosts Common CLI for all Docker hosts 10 integrations, including AWS, VMware… Docker Swarm Cluster Docker hosts into a single pool Schedule Docker container workloads based on resource availability Docker Compose Define multi-container distributed apps Control all containers via single command $ machine create
  • 11. © 2015 IBM Corporation Docker Hub Ship Enable sharing and collab of Docker Images Private and public repositories of images Certified base images by ISVs Docker Hub $ docker push $ docker pull
  • 12. © 2015 IBM Corporation Why should you care about Containers? • Demand for Increased Application Development Efficiency • Enable Continuous Integration/Continuous Delivery • Developer Laptops, through automated test, to production, and through scaling without modification • DevOps Requires Improved Deployment Efficiency • Higher Density of Compute Resources (CPU, Memory, Storage) • Hybrid Cloud and Choice Require Portability • Cross Cloud Deployment - move the same application across multiple clouds. • Eliminate “lock-in”, become a “Cloud Broker” 12 Pain points User scenarios How this offering helps Need resources faster Get a working environment up and running in minutes, not hours or weeks Users can instantiate new container instances in seconds with the consistent experience working directly with Docker Innovation requires agility and DevOps Continuous delivery pipeline IBM Containers integrates with Bluemix apps including a continuous delivery pipeline, partnered with the fast deployments of containers Ability to migrate workload from on- prem to off-prem infrastructure Changes made on developer’s local image is ready to deploy to production cloud Portability as images can be developed on a local workstation, tested in a staging cloud on-prem, and finally to the production off-prem cloud Environment to facilitate incremental production deployment Business wants to deploy in a phased approach to validate the expected experience of the new version Users can deploy new releases in a controlled manner enabling them to monitor the performance and behavior with the ability to roll back if needed
  • 13. © 2015 IBM Corporation IBM Bluemix IBM Bluemix and the Container Service
  • 14. © 2015 IBM Corporation Docker Containers simplifies cloud portability Developers & SysAdmins love the flexibility and standardization of Docker Standardization  Application portability Package, ship, and run applications anywhere The Docker Hub Registry has 5,000+ "Dockerized" applications Lightweight Containers are “light” users of system resources, smaller than VMs, start up much faster, and have better performance Ecosystem-friendly A new industry standard, with a vibrant ecosystem of partners. 730+ community contributors; 50,000 third-party Docker projects on GitHub User-friendly Developers build with ease and ship higher-quality applications SysAdmins deploy workloads based on business priorities and policies. "Flexibility and portability are becoming paramount in developing, deploying and managing applications in the cloud, particularly at scale and among large enterprise organizations," Jay Lyman, a senior analyst for enterprise software at 451 Research, told Linux.com.1 1Linux.com
  • 15. © 2015 IBM Corporation IBM Container Runtime on Bluemix  Automate the build of Docker images  Manage and distribute Docker images in private image registries  Easily host containers in the cloud  Scale and auto- recovery built-in  Logging and Monitoring built-in
  • 16. © 2015 IBM Corporation Local Development with Containers IBM Container Service IBM Container Image Registry Service Containers support portability making them ideal for local development and hybrid cloud deployment
  • 17. © 2015 IBM Corporation Develop/Test locally while using Bluemix Services boot2docker (Vagrant with Docker host) Leverage portability of containers and convenience of Bluemix services.
  • 18. © 2015 IBM Corporation ICE (IBM Containers Extension) Tool ICE both wraps the docker command line tool for managing local docker images and containers and also adds additional functionality specific to the Bluemix docker hosting Including: Management of Floating IP addresses (request/bind/undbind/list) and routes Pushing local docker images to the registry in Bluemix Building and managing container groups managing/monitoring state of containers running in Bluemix ICE is downloaded from https://www.ng.bluemix.net/docs/cli/cli.html#container_cli Run ice commands as you would docker commands: sudo ice login -a https://api.ng.bluemix.net -H https://api- ice.ng.bluemix.net/v2/containers -R registry-ice.ng.bluemix.net sudo ice ps – shows the running docker containers on Bluemix sudo ice –help will list out all commands
  • 19. © 2015 IBM Corporation Simple ICE demonstration We’ll start with creating a simple Dockerfile: FROM registry-ice.ng.bluemix.net/ibmnode:latest ADD app.js /app.js EXPOSE 9085 CMD ["node", "app.js"] Steps 1. Pull image from the bluemix registry (optional) 2. Build image locally 3. Tag the image 4. Push the image to bluemix 5. Validate that the image is uploaded correctly 6. Run the container in bluemix 7. Bind a floating IP address to the running container
  • 20. © 2015 IBM Corporation Docker and WebSphere Application Server Support for WebSphere Application Server Liberty Profile and Full Profile running under Docker WebSphere Application Server Liberty Profile image on IBM Bluemix Registry Dockerfiles on WASDev to: • Upgrade the Docker Hub image with a Liberty Core, Base or ND license • Build your own Docker image for Liberty or Full Profile 2
  • 21. © 2015 IBM Corporation Deploying a WebSphere Application Build a layer on top of the image containing the application Dockerfile FROM registry-ice.ng.bluemix.net/ibmliberty:latest ADD app.war /opt/ibm/wlp/usr/servers/defaultServer/dropins/ ENV LICENSE accept sudo ice –local build –t=“kbrown/helloliberty” . sudo ice –local run –i -t –p=80:9080 –p=443:9443 “kbrown/helloliberty” Modifying the application requires rebuilding and redeploying just the application layer 2
  • 22. © 2015 IBM Corporation IBM Bluemix What’s next?
  • 23. © 2015 IBM Corporation Moving from monolithic applications to microservices 23 Monolithic app Micro services Scaling Scaling
  • 24. © 2015 IBM Corporation IBM and Docker Partnership • Strategic partnership announced December, 2014 https://www-03.ibm.com/press/us/en/pressrelease/45597.wss • Objective: Deliver next generation enterprise-grade, portable, distributed applications that are composed of interoperable Docker containers • Enables hybrid cloud use cases for the enterprise Initiatives Underway • IBM Enterprise Containers on Bluemix enables enterprises to launch Docker containers to automate application deployment on or off premise • IBM UrbanCode automates the deployment of multiple Docker containers to various dev/test and staging environments, as part of the DevOps pipeline • PureApplication Systems & Services builds, deploys and runs Pure patterns with Docker containers • Docker Hub Enterprise (DHE) integration • Extend IBM DevOps and IBM cloud solutions by integrating with and reselling Docker Hub Enterprise software & support 24
  • 25. © 2015 IBM Corporation IBM MobileFirst Platform Foundation • IBM® MobileFirst Platform Foundation, formerly known as IBM Worklight, helps organizations extend their business to mobile devices. It provides an open and comprehensive platform to not only build, but test, run and manage native, hybrid and mobile web apps. • It is available as an on-premise or private cloud solutions • Why run MFP Foundation solution on Docker?  Easy installation  Quick, cloud friendly development  An agile hosting solution  Sharing between team members 25
  • 26. © 2015 IBM Corporation MFP Foundation in a Bluemix Container 26 Server Container MFP Server v6.3 Admin Console Runtime App1 App2 Add 1 Add 2 SQL Database Service admin wl Bluemix Helper Application bind copy VCAP_SERVICES reports IBM® Bluemix™
  • 27. © 2015 IBM Corporation How is this different from Virtualization? Containers & VMs Understanding both technologies 27 Virtualization Approach Build •Package the (guest) operating system •Add required files and programs Deploy: •This entire “package” can be moved and reconfigured across different physical machine Change: •Change details of the software within the virtual machine and then create a new virtual machine. Value: •Traditional cloud-enabled workloads Container Approach Build: • Software stack can be individually packaged Deploy: • Software stack in a Docker container can be easily moved between deployment environments Change: • Recomposed software into new stacks Value: • Built-on-the-cloud applications • Loosely coupled, elastic architectures Standardization and choice for delivering the best business value
  • 28. © 2015 IBM Corporation Support for Docker in other Clouds Amazon • Amazon EC2 Container Service supports the Docker platform and enables you to run and manage Docker containers across a cluster of Amazon EC2 instances. • Each EC2 instance in a cluster managed by EC2 Container Service runs a Docker daemon, so whatever application you package as a container locally will deploy and run on EC2 Container Service without the need for any configuration changes. Google • Google container Engine allows you to run and manage Docker containers on Google's Cloud Platform's VMs (it is in alpha release) • Container Engine uses Google Compute Engine instances for the nodes in the cluster and, similar to Amazon, you are billed for those instances/resources Microsoft • Docker Engine open source runtime will work with the next version of Windows Server and Docker Engine images for Windows Server will be available in the Docker Hub. • The Docker Hub will also be integrated directly into Azure so that it is accessible through the Azure Management Portal and Azure Gallery 28

Notas do Editor

  1. A container consists of an operating system, user-added files, and meta-data. As we've seen, each container is built from an image. That image tells Docker what the container holds, what process to run when the container is launched, and a variety of other configuration data. The Docker image is read-only. When Docker runs a container from an image, it adds a read-write layer on top of the image (using a union file system as we saw earlier) in which your application can then run.
  2. Containers: A lightweight isolated user space within a running Linux OS Containers share Host OS kernel services Implemented with Linux cgroups, saved as a file system With Docker: The underlying operating system is abstracted away by the Docker runtime, a “very thin layer” that sandboxes the app and makes it portable. Without the Docker layer, an app would have to be written to deal with different operating systems, different hypervisors (software that enables virtualization), different cloud platforms. You might assume that such a layer of abstraction would slow down an app’s performance, but Hykes claims it does not, in part because it uses capabilities that have existed in the Linux kernel for years. “Linux does the heavy lifting,” Hykes said. ZDNet: Docker is riding the hype cycle as fast as I can recall ever seeing an enterprise technology go…It is hotter than hot because it makes it possible to get far more apps running on the same old servers and it also makes it very easy to package and ship programs. Background: Docker 1.0 was released in June 2014, and includes the free Docker Engine (its container standard) and Docker Hub (a repository for 3rd-party services for distributed apps). Docker is open-source.