SlideShare a Scribd company logo
1 of 40
Download to read offline
Docker for Domino
• Gabriella Davis
• IBM Lifetime Champion for Social Business
• gabriella@turtlepartnership.com
Gab Davis
• Admin of all things and especially quite
complicated things where the fun is
• Working with the design, deployment and
security of IBM technologies within global
infrastructures
• working with the real world security and privacy
aspects of expanding data ecosystems
• Stubborn and relentless problem solver
• http://turtleblog.infohttps://
www.turtlepartnership.com
• IBM Lifetime Champion
Terminology In The
World Of
Containerisation
DevOps
• DevOps or Developer Operations refers to the collaboration of software development
and developers with IT operations
• it refers to practices, processes and communication not specific technologies
• good DevOps practices are designed around rapid, consistent and reliable systems
• The goal of DevOps is to ensure the seamless delivery and maintenance of
applications
Microservices
• Applications were traditionally developed in entirety with every function of the application grouped together
and operating in concert
• for that reason applications can often be large, over developed and hard to update
• a change to a single function has to be incorporated into the entire application without any impact
• Microservices architecture refers to applications that are developed as separate functional or core services
each operating in their own isolated container but able to talk to each other
• updates are simpler and minimising the overall application size is easier by deploying just those micro
services that are needed
• Domino Tasks = Microservices ?
Virtualisation
• Isolating applications running on a single physical server
• Virtualisation allows us to use software to mimic physical hardware
• Using virtual machines we can more easily create new server instances and scale them
• This saves both time and cost
• The use of virtual machines and virtual environments has grown exponentially in the
past decade
Virtual Machine vs Container
With little OS of their own, containers are more lightweight and allow
the host OS and hardware to be utilised more efficiently
Virtual
Machines
Virtual Machine vs Container
With little OS of their own, containers are more lightweight and allow
the host OS and hardware to be utilised more efficiently
Virtual
Machines
Containers
Virtual Machine or Container?
It’s not an either / or - both architectures have their benefits
and drawbacks
Virtual Machine Container
More isolated and more secure
Portable, simple to move between hosts or deploy from
development directly to production
Can run different operating systems in each virtual machine
and not be tied to the host OS
Fast to start up with no OS overhead
Able to granularly scale use of resources Able to make more efficient use of host resources
More work to set up and manage Collectively dependent upon and all using the same host OS
Each VM must have enough resources assigned to also run
the VMs OS
Potential for security vulnerability via a “bleed” from the
container to the OS and the process that started it
Containers Offer..
• Self-contained sandbox environments that host applications including micro services
• Containers do not have an entire OS installed inside them the way virtual servers do but instead
share the OS of the host machine
• Multiple containers can share the OS of a host machine with their own isolated application and
file system
• Container architecture is designed to be portable and simple to update / maintain
• A container would usually contain a single service so that maximum benefit can be leveraged from
the portability
• one service or application to one container
• each application environment is not dependent on the other
Docker
• Docker is an open source container based virtualisation solution
• There is both a “Docker” client and a “Docker” server
• Docker is not the only container environment, there are others such as rkt (Rocket)
but IBM are using Docker for Connections Pink and it’s supported in a wide variety of
hosting environments including AWS, Azure and Rackspace
• Docker can be quickly installed on Linux, Windows and Mac
Kubernetes and Docker Swarm
• Containers must be deployed and managed
• management tools aren’t easy
• Containers can also be clustered and load managed by a cluster manager
• Docker Swarm is a native cluster manager using the Docker API so it requires Docker containers
• Kubernetes evolved out of Google’s expertise and was far ahead of Docker Swarm for many years but
no longer
• There are many tools out there to help cluster and manage Docker containers
• If you are going to have exclusively docker containers than Docker Swarm may be a better approach
than Kubernetes
• Clustering at Container level has to be very carefully considered with Domino containers
Getting Started
Devops and Containers
• Developers love containers
• They make it easy to isolate microservices and swap out updated code
• However that ease comes with risk
• each container is drawing resources from the same host
• each container has separately mounted storage and often nested dependencies
• spawning a new container from an image will not deploy changes made inside an existing
spawned container
• Process is everything
• Process is Operations and Development working together
Mac docker install supports Linux containers
Windows docker install supports Windows
2016 server core containers and Linux (kind
of)| using Linuxkit (don’t do it!)
Images and Containers
• You don’t run the image itself but use the Docker server to
spawn a container based upon that image
• You can spawn as many containers as you want using the
same image on the same host
• Each time a new container starts it is given a name, an ID
and a tag
• Changes made inside the container are not saved when
you quit it unless you commit those changes back to a new
image
• Starting a container from an image also includes mounting
storage
• So is having a re-usable Domino image useful?
IMAGE
CONTAINER
ID
TAG
Running Process
NEW IMAGE
docker run spawns a container
instance based on an image
docker commit creates a new
image based on a container
Name
Commands For Reviewing
Containers
• Once docker CE or EE is installed and active the command “docker” will work in a command
window
• docker images - shows all existing images in the registry
• docker ps - shows all existing containers
Docker Pull Images
• the Docker Store (store.docker.com) has hundreds of containers that you can use
• docker pull microsoft/windowsservercore (the windows 2016 server core container)
• docker pull registry.access.redhat.com/rhel7 (rhel 7)
• docker pull mongo
• docker pull store/ibmcorp/db2_developer_c:11.1.3.3-x86_64
• For Domino I use RHEL
• There are many CentOS and Debian containers available but those are not supported
Domino platforms
Images & Containers
• docker image ls - to show all available images
• docker ps —all to show all running and non running containers
• docker-machine <command> <machinename> e.g. docker-machine inspect turtle test
• docker exec <container name>- run a new process in the named container e.g. bash
Commands For Containers
• docker run - lets you start a new container from an image
• -d starts in background mode -i starts in interactive mode
• https://docs.docker.com/engine/reference/commandline/run/
• docker attach - lets you connect to a running container
• CTRL P, CTRL Q exists a running container without closing it
• CTRL D - exits and closes a container, this isn’t the same as removing it but does lose all
your changes
• docker logs <containername>
Using Docker For Domino?
• Using the image registry.access.redhat.com/rhel7

docker run -t —i -v /Users/GabAir/Downloads/Notesdata:/home -p 1352:1352 -p 80:80
registry.access.redhat.com/rhel7



docker exec -i -t <containername> /bin/bash
• docker commit <containername> <newimagename>
• Development
• Testing
• Low priority cluster mate
• DR hot swap
• Consider disk and storage
Domino On Docker
Architecture
Choosing an OS For Your Container
• Domino runs on both Linux and Windows so how do we choose?
• the OS kernel is on the host machine so that OS has to be a supported Domino OS
• both the image and therefore the container access the host kernel for their core functionality
• Windows 2016 and Windows 10 can run Docker CE and EE
• Linuxkit can be used to run Linux containers on Windows (dodgy at best)
• Windows containers are Windows 2016 core server
• Domino on Docker will primarily run on a Linux host with a Linux container
• Adding an extra layer of running a Linux container on a Windows docker install impacts performance
Resources
• When creating a docker container from an image you do have some control over the
resources on the host that it can consume. This includes
• Maximum allowed memory
• Allocated CPU % as a total of the host and/or relative to other containers running
• This will prevent a container from consuming too much resource
• However Domino cares about
• disk performance
• cpu
• memory
• designing the correct storage is the most critical aspect of a production container
Container Clustering With Domino
• Clustering at Container level has to be very carefully designed if you’re deploying Domino containers
• Domino won’t like container clustering across identical live Domino servers
• Data storage should be outside the container as containers are designed to be temporary and self
destruct on quitting (more on that in a bit)
• Having a failover cluster as a Domino container
• Having multiple active / passive containers representing the same Domino server
File based storage for
MailA
Domino Active
Container
MailA
Domino Passive
Container
MailA
Docker Storage
Docker Data Volumes
• Shared storage areas that can be used by the containers to access data on the host or
within another container
• You don’t create volumes within a container so you create volumes that link to either data
stored in another container or on the host
• Volumes defined in an image and deployed as the container creates can only be applied to
that container and are not removed when it is removed
• Volumes defined within a container can be accessed by other containers using the volumes-
from option
Data Volume Containers
• You are essentially creating containers to be NFS
stores
• Since they are containers they can be moved to new
locations and the references to them will still work
• However if the data container isn’t running the data
can’t be reached
• Backing up the data means backing up the
container
• All containers that mount that volume are reading
and writing to the same space
• Be careful not to destroy the data Container
• Docker has limited data integrity protection
Directory Mounts
• A location on the host machine that is “mapped” to a
mount point essentially in one or multiple containers
• It is accessible and exists regardless of whether any
containers are running or using it
• It can be backed up as standard data storage
• Access is controlled by host file permissions
• It can’t be as easily moved to a new location
• Be careful of tying yourself in knots with relative
references to data volumes
• Be VERY careful of launching a container if you
don’t know the mount points that are defined inside it
Directory Mounts vs Docker
Data Volumes
• A directory mount can be assigned to multiple
containers even after they are created
• A directory mount can point to any part of the
host file system that the account running the
docker container has access to
• Directory Mounts have security and data loss
risks that need to be carefully managed
• Data volumes are created when the
container is created and cannot be re-
used directly by other containers
• Docker data volumes are created within
the docker file structure on the host and
are managed (or not managed)
separately from the container
• Deleting a container will not remove the
data volume
Risks
• Storage containers can easily be deleted
• especially if it’s not clear that another container is using that storage
• Directory mounts can be easily overwritten if another container runs with the same mount
points
• Deploying new code via a container that retains the storage references from a previous
version will overwrite production storage
• Ease of use and flexibility must be tempered with Devops process and planning
Docker Networking
Docker Networking
• Docker can create a private network for each container it starts
• Containers can be linked together to share the same private network and isolate themselves
from other containers started by the same docker machine
• by linking containers you can ensure if they are killed then recreated with the same name,
the network link is maintained
• We can also tell the docker server to expose specific ports inside the containers to external
ports that can be reached outside the containers. For instance a port 25 SMTP listener or
443 web server (old school method)
Bridged Driver Networks
• Each container is created as part of a
defined bridged network
• The bridge networks are private and on
their own subnet
• Containers on the same bridge network
can be seen and addressed within their
own private network without routing traffic
through the host
Overlay Driver Networks
• Each container is created as part of a
defined overlay network
• Overlays are similar to bridge networks
but are designed to work with multi host
networks so containers do not have to be
on the same host to see each other
• Docker swarm is used to manage and
route traffic between containers using the
overlay driver
Port Forwarding
• When running the containers we specify
both a port to open and how it is reached
from the host machine
• This port forwarding can then be used by
other containers to talk to each other via the
host
Macvlan Drivers
• Each container is created as part of the host
network
• The routing and accessibility is controlled as if the
container were simply another machine on the host
network
• This makes macvlan the most lightweight of drivers
Summary
• Docker is a great architecture for temporary or changing environments such as development
• It really does require understanding and a level of comfort with Linux OS
• Containers are designed to destroy themselves and their content unless you specify otherwise so in most cases we want
to keep content outside the container
• Domino runs well on Docker for Linux but it really isn’t a collection of microservices (yet**) so isn’t taking advantage of
the core architectural benefits of containers
• ** hello HCL - one for the wishlist
• Domino is very dependent on disk performance and I/O so choosing and optimising the right storage is critical
• Deploying docker as production architecture for Domino is not something I’d recommend but for test, development or
small scale failover it is a good solution
Gab Davis
gabriella@turtlepartnership.com
http://turtleblog.info
twitter: gabturtle
skype: gabrielladavis

More Related Content

What's hot

What's hot (20)

HCL Sametime 12.0 – Converting from native Domino Directory to LDAP and Migra...
HCL Sametime 12.0 – Converting from native Domino Directory to LDAP and Migra...HCL Sametime 12.0 – Converting from native Domino Directory to LDAP and Migra...
HCL Sametime 12.0 – Converting from native Domino Directory to LDAP and Migra...
 
Docker 101 : Introduction to Docker and Containers
Docker 101 : Introduction to Docker and ContainersDocker 101 : Introduction to Docker and Containers
Docker 101 : Introduction to Docker and Containers
 
What is Docker
What is DockerWhat is Docker
What is Docker
 
Docker 101: An Introduction
Docker 101: An IntroductionDocker 101: An Introduction
Docker 101: An Introduction
 
Introduction to Docker
Introduction to DockerIntroduction to Docker
Introduction to Docker
 
Docker
DockerDocker
Docker
 
Docker introduction
Docker introductionDocker introduction
Docker introduction
 
Docker Introduction
Docker IntroductionDocker Introduction
Docker Introduction
 
1. Docker Introduction.pdf
1. Docker Introduction.pdf1. Docker Introduction.pdf
1. Docker Introduction.pdf
 
DNUG HCL Domino 11 First Look
DNUG HCL Domino 11 First LookDNUG HCL Domino 11 First Look
DNUG HCL Domino 11 First Look
 
Understanding domino memory 2017
Understanding domino memory 2017Understanding domino memory 2017
Understanding domino memory 2017
 
Docker, LinuX Container
Docker, LinuX ContainerDocker, LinuX Container
Docker, LinuX Container
 
Introduction to Docker
Introduction to DockerIntroduction to Docker
Introduction to Docker
 
Docker Commands With Examples | Docker Tutorial | DevOps Tutorial | Docker Tr...
Docker Commands With Examples | Docker Tutorial | DevOps Tutorial | Docker Tr...Docker Commands With Examples | Docker Tutorial | DevOps Tutorial | Docker Tr...
Docker Commands With Examples | Docker Tutorial | DevOps Tutorial | Docker Tr...
 
[오픈소스컨설팅]Docker기초 실습 교육 20181113_v3
[오픈소스컨설팅]Docker기초 실습 교육 20181113_v3[오픈소스컨설팅]Docker기초 실습 교육 20181113_v3
[오픈소스컨설팅]Docker기초 실습 교육 20181113_v3
 
Deep Dive AdminP Process - Admin and Infrastructure Track at UKLUG 2012
Deep Dive AdminP Process - Admin and Infrastructure Track at UKLUG 2012Deep Dive AdminP Process - Admin and Infrastructure Track at UKLUG 2012
Deep Dive AdminP Process - Admin and Infrastructure Track at UKLUG 2012
 
Installing and running Postfix within a docker container from the command line
Installing and running Postfix within a docker container from the command lineInstalling and running Postfix within a docker container from the command line
Installing and running Postfix within a docker container from the command line
 
Introduction to Docker storage, volume and image
Introduction to Docker storage, volume and imageIntroduction to Docker storage, volume and image
Introduction to Docker storage, volume and image
 
IBM Lotus Domino Domain Monitoring (DDM)
IBM Lotus Domino Domain Monitoring (DDM)IBM Lotus Domino Domain Monitoring (DDM)
IBM Lotus Domino Domain Monitoring (DDM)
 
Docker 基礎介紹與實戰
Docker 基礎介紹與實戰Docker 基礎介紹與實戰
Docker 基礎介紹與實戰
 

Similar to An introduction to configuring Domino for Docker

Similar to An introduction to configuring Domino for Docker (20)

An Introduction To Docker
An Introduction To DockerAn Introduction To Docker
An Introduction To Docker
 
An Introduction To Docker
An Introduction To  DockerAn Introduction To  Docker
An Introduction To Docker
 
An Introduction to Configuring Domino for Docker
An Introduction to Configuring Domino for DockerAn Introduction to Configuring Domino for Docker
An Introduction to Configuring Domino for Docker
 
Introduction to Containers - SQL Server and Docker
Introduction to Containers - SQL Server and DockerIntroduction to Containers - SQL Server and Docker
Introduction to Containers - SQL Server and Docker
 
Developer workflow with docker
Developer workflow with dockerDeveloper workflow with docker
Developer workflow with docker
 
eZ Publish 5: from zero to automated deployment (and no regressions!) in one ...
eZ Publish 5: from zero to automated deployment (and no regressions!) in one ...eZ Publish 5: from zero to automated deployment (and no regressions!) in one ...
eZ Publish 5: from zero to automated deployment (and no regressions!) in one ...
 
Introduction to Docker Containers - Docker Captain
Introduction to Docker Containers - Docker CaptainIntroduction to Docker Containers - Docker Captain
Introduction to Docker Containers - Docker Captain
 
Introduction to Docker - IndiaOpsUG
Introduction to Docker - IndiaOpsUGIntroduction to Docker - IndiaOpsUG
Introduction to Docker - IndiaOpsUG
 
Containers and Docker
Containers and DockerContainers and Docker
Containers and Docker
 
Containers and Microservices for Realists
Containers and Microservices for RealistsContainers and Microservices for Realists
Containers and Microservices for Realists
 
Containers and microservices for realists
Containers and microservices for realistsContainers and microservices for realists
Containers and microservices for realists
 
Introduction to Docker
Introduction to DockerIntroduction to Docker
Introduction to Docker
 
Docker interview Questions-1.pdf
Docker interview Questions-1.pdfDocker interview Questions-1.pdf
Docker interview Questions-1.pdf
 
Virtualization, Containers, Docker and scalable container management services
Virtualization, Containers, Docker and scalable container management servicesVirtualization, Containers, Docker and scalable container management services
Virtualization, Containers, Docker and scalable container management services
 
Docker Workshop
Docker WorkshopDocker Workshop
Docker Workshop
 
Docker - A curtain raiser to the Container world
Docker - A curtain raiser to the Container worldDocker - A curtain raiser to the Container world
Docker - A curtain raiser to the Container world
 
Getting started with Docker
Getting started with DockerGetting started with Docker
Getting started with Docker
 
Week 8 lecture material
Week 8 lecture materialWeek 8 lecture material
Week 8 lecture material
 
From VMs to Containers: Introducing Docker Containers for Linux and Windows S...
From VMs to Containers: Introducing Docker Containers for Linux and Windows S...From VMs to Containers: Introducing Docker Containers for Linux and Windows S...
From VMs to Containers: Introducing Docker Containers for Linux and Windows S...
 
Developer workflow with docker
Developer workflow with dockerDeveloper workflow with docker
Developer workflow with docker
 

More from Gabriella Davis

More from Gabriella Davis (20)

A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
. Design Decisions: Developing for Mobile - The Template Experience Project
. Design Decisions: Developing for Mobile - The Template Experience Project. Design Decisions: Developing for Mobile - The Template Experience Project
. Design Decisions: Developing for Mobile - The Template Experience Project
 
Domino Server Health - Monitoring and Managing
 Domino Server Health - Monitoring and Managing Domino Server Health - Monitoring and Managing
Domino Server Health - Monitoring and Managing
 
Face Off Domino vs Exchange On Premises
Face Off Domino vs Exchange On PremisesFace Off Domino vs Exchange On Premises
Face Off Domino vs Exchange On Premises
 
60 Admin Tips
60 Admin Tips60 Admin Tips
60 Admin Tips
 
Adminlicious - A Guide To TCO Features In Domino v10
Adminlicious - A Guide To TCO Features In Domino v10Adminlicious - A Guide To TCO Features In Domino v10
Adminlicious - A Guide To TCO Features In Domino v10
 
An Introduction To The DMARC SMTP Validation Requirements
An Introduction To The DMARC SMTP Validation RequirementsAn Introduction To The DMARC SMTP Validation Requirements
An Introduction To The DMARC SMTP Validation Requirements
 
× The Road To A #Perfect10 - How To Get Ready For Domino, Sametime, VOP and T...
× The Road To A #Perfect10 - How To Get Ready For Domino, Sametime, VOP and T...× The Road To A #Perfect10 - How To Get Ready For Domino, Sametime, VOP and T...
× The Road To A #Perfect10 - How To Get Ready For Domino, Sametime, VOP and T...
 
How To Approach GDPR Preparation & Discovery
How To Approach GDPR Preparation & DiscoveryHow To Approach GDPR Preparation & Discovery
How To Approach GDPR Preparation & Discovery
 
An Introduction To The DMARC SMTP Validation Requirements
An Introduction To The DMARC SMTP Validation RequirementsAn Introduction To The DMARC SMTP Validation Requirements
An Introduction To The DMARC SMTP Validation Requirements
 
Brand Yourself
Brand YourselfBrand Yourself
Brand Yourself
 
Home Working
Home WorkingHome Working
Home Working
 
A Guide To Single Sign-On for IBM Collaboration Solutions
A Guide To Single Sign-On for IBM Collaboration SolutionsA Guide To Single Sign-On for IBM Collaboration Solutions
A Guide To Single Sign-On for IBM Collaboration Solutions
 
The Imposter Syndrome
The Imposter SyndromeThe Imposter Syndrome
The Imposter Syndrome
 
What's New in Notes, Sametime and Verse On-Premises
What's New in Notes, Sametime and Verse On-PremisesWhat's New in Notes, Sametime and Verse On-Premises
What's New in Notes, Sametime and Verse On-Premises
 
Setting Up a Hybrid Domino Environment to Ease your Way to the Cloud
Setting Up a Hybrid Domino Environment to Ease your Way to the CloudSetting Up a Hybrid Domino Environment to Ease your Way to the Cloud
Setting Up a Hybrid Domino Environment to Ease your Way to the Cloud
 
Embracing iot in the enterprise
Embracing iot in the enterpriseEmbracing iot in the enterprise
Embracing iot in the enterprise
 
Benefits and Risks of a Single Identity - IBM Connect 2017
Benefits and Risks of a Single Identity - IBM Connect 2017Benefits and Risks of a Single Identity - IBM Connect 2017
Benefits and Risks of a Single Identity - IBM Connect 2017
 
Domino in the Back, Party In The Front
Domino in the Back, Party In The FrontDomino in the Back, Party In The Front
Domino in the Back, Party In The Front
 
Penumbra briefing
Penumbra briefingPenumbra briefing
Penumbra briefing
 

Recently uploaded

Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
chiefasafspells
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
masabamasaba
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
shinachiaurasa2
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
masabamasaba
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
VictoriaMetrics
 

Recently uploaded (20)

8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
 
What Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationWhat Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the Situation
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go Platformless
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 

An introduction to configuring Domino for Docker

  • 1. Docker for Domino • Gabriella Davis • IBM Lifetime Champion for Social Business • gabriella@turtlepartnership.com
  • 2. Gab Davis • Admin of all things and especially quite complicated things where the fun is • Working with the design, deployment and security of IBM technologies within global infrastructures • working with the real world security and privacy aspects of expanding data ecosystems • Stubborn and relentless problem solver • http://turtleblog.infohttps:// www.turtlepartnership.com • IBM Lifetime Champion
  • 3. Terminology In The World Of Containerisation
  • 4. DevOps • DevOps or Developer Operations refers to the collaboration of software development and developers with IT operations • it refers to practices, processes and communication not specific technologies • good DevOps practices are designed around rapid, consistent and reliable systems • The goal of DevOps is to ensure the seamless delivery and maintenance of applications
  • 5. Microservices • Applications were traditionally developed in entirety with every function of the application grouped together and operating in concert • for that reason applications can often be large, over developed and hard to update • a change to a single function has to be incorporated into the entire application without any impact • Microservices architecture refers to applications that are developed as separate functional or core services each operating in their own isolated container but able to talk to each other • updates are simpler and minimising the overall application size is easier by deploying just those micro services that are needed • Domino Tasks = Microservices ?
  • 6. Virtualisation • Isolating applications running on a single physical server • Virtualisation allows us to use software to mimic physical hardware • Using virtual machines we can more easily create new server instances and scale them • This saves both time and cost • The use of virtual machines and virtual environments has grown exponentially in the past decade
  • 7. Virtual Machine vs Container With little OS of their own, containers are more lightweight and allow the host OS and hardware to be utilised more efficiently Virtual Machines
  • 8. Virtual Machine vs Container With little OS of their own, containers are more lightweight and allow the host OS and hardware to be utilised more efficiently Virtual Machines Containers
  • 9. Virtual Machine or Container? It’s not an either / or - both architectures have their benefits and drawbacks Virtual Machine Container More isolated and more secure Portable, simple to move between hosts or deploy from development directly to production Can run different operating systems in each virtual machine and not be tied to the host OS Fast to start up with no OS overhead Able to granularly scale use of resources Able to make more efficient use of host resources More work to set up and manage Collectively dependent upon and all using the same host OS Each VM must have enough resources assigned to also run the VMs OS Potential for security vulnerability via a “bleed” from the container to the OS and the process that started it
  • 10. Containers Offer.. • Self-contained sandbox environments that host applications including micro services • Containers do not have an entire OS installed inside them the way virtual servers do but instead share the OS of the host machine • Multiple containers can share the OS of a host machine with their own isolated application and file system • Container architecture is designed to be portable and simple to update / maintain • A container would usually contain a single service so that maximum benefit can be leveraged from the portability • one service or application to one container • each application environment is not dependent on the other
  • 11. Docker • Docker is an open source container based virtualisation solution • There is both a “Docker” client and a “Docker” server • Docker is not the only container environment, there are others such as rkt (Rocket) but IBM are using Docker for Connections Pink and it’s supported in a wide variety of hosting environments including AWS, Azure and Rackspace • Docker can be quickly installed on Linux, Windows and Mac
  • 12. Kubernetes and Docker Swarm • Containers must be deployed and managed • management tools aren’t easy • Containers can also be clustered and load managed by a cluster manager • Docker Swarm is a native cluster manager using the Docker API so it requires Docker containers • Kubernetes evolved out of Google’s expertise and was far ahead of Docker Swarm for many years but no longer • There are many tools out there to help cluster and manage Docker containers • If you are going to have exclusively docker containers than Docker Swarm may be a better approach than Kubernetes • Clustering at Container level has to be very carefully considered with Domino containers
  • 14. Devops and Containers • Developers love containers • They make it easy to isolate microservices and swap out updated code • However that ease comes with risk • each container is drawing resources from the same host • each container has separately mounted storage and often nested dependencies • spawning a new container from an image will not deploy changes made inside an existing spawned container • Process is everything • Process is Operations and Development working together
  • 15. Mac docker install supports Linux containers Windows docker install supports Windows 2016 server core containers and Linux (kind of)| using Linuxkit (don’t do it!)
  • 16. Images and Containers • You don’t run the image itself but use the Docker server to spawn a container based upon that image • You can spawn as many containers as you want using the same image on the same host • Each time a new container starts it is given a name, an ID and a tag • Changes made inside the container are not saved when you quit it unless you commit those changes back to a new image • Starting a container from an image also includes mounting storage • So is having a re-usable Domino image useful? IMAGE CONTAINER ID TAG Running Process NEW IMAGE docker run spawns a container instance based on an image docker commit creates a new image based on a container Name
  • 17. Commands For Reviewing Containers • Once docker CE or EE is installed and active the command “docker” will work in a command window • docker images - shows all existing images in the registry • docker ps - shows all existing containers
  • 18. Docker Pull Images • the Docker Store (store.docker.com) has hundreds of containers that you can use • docker pull microsoft/windowsservercore (the windows 2016 server core container) • docker pull registry.access.redhat.com/rhel7 (rhel 7) • docker pull mongo • docker pull store/ibmcorp/db2_developer_c:11.1.3.3-x86_64 • For Domino I use RHEL • There are many CentOS and Debian containers available but those are not supported Domino platforms
  • 19. Images & Containers • docker image ls - to show all available images • docker ps —all to show all running and non running containers • docker-machine <command> <machinename> e.g. docker-machine inspect turtle test • docker exec <container name>- run a new process in the named container e.g. bash
  • 20. Commands For Containers • docker run - lets you start a new container from an image • -d starts in background mode -i starts in interactive mode • https://docs.docker.com/engine/reference/commandline/run/ • docker attach - lets you connect to a running container • CTRL P, CTRL Q exists a running container without closing it • CTRL D - exits and closes a container, this isn’t the same as removing it but does lose all your changes • docker logs <containername>
  • 21.
  • 22. Using Docker For Domino? • Using the image registry.access.redhat.com/rhel7
 docker run -t —i -v /Users/GabAir/Downloads/Notesdata:/home -p 1352:1352 -p 80:80 registry.access.redhat.com/rhel7
 
 docker exec -i -t <containername> /bin/bash • docker commit <containername> <newimagename> • Development • Testing • Low priority cluster mate • DR hot swap • Consider disk and storage
  • 24. Choosing an OS For Your Container • Domino runs on both Linux and Windows so how do we choose? • the OS kernel is on the host machine so that OS has to be a supported Domino OS • both the image and therefore the container access the host kernel for their core functionality • Windows 2016 and Windows 10 can run Docker CE and EE • Linuxkit can be used to run Linux containers on Windows (dodgy at best) • Windows containers are Windows 2016 core server • Domino on Docker will primarily run on a Linux host with a Linux container • Adding an extra layer of running a Linux container on a Windows docker install impacts performance
  • 25. Resources • When creating a docker container from an image you do have some control over the resources on the host that it can consume. This includes • Maximum allowed memory • Allocated CPU % as a total of the host and/or relative to other containers running • This will prevent a container from consuming too much resource • However Domino cares about • disk performance • cpu • memory • designing the correct storage is the most critical aspect of a production container
  • 26. Container Clustering With Domino • Clustering at Container level has to be very carefully designed if you’re deploying Domino containers • Domino won’t like container clustering across identical live Domino servers • Data storage should be outside the container as containers are designed to be temporary and self destruct on quitting (more on that in a bit) • Having a failover cluster as a Domino container • Having multiple active / passive containers representing the same Domino server File based storage for MailA Domino Active Container MailA Domino Passive Container MailA
  • 28. Docker Data Volumes • Shared storage areas that can be used by the containers to access data on the host or within another container • You don’t create volumes within a container so you create volumes that link to either data stored in another container or on the host • Volumes defined in an image and deployed as the container creates can only be applied to that container and are not removed when it is removed • Volumes defined within a container can be accessed by other containers using the volumes- from option
  • 29. Data Volume Containers • You are essentially creating containers to be NFS stores • Since they are containers they can be moved to new locations and the references to them will still work • However if the data container isn’t running the data can’t be reached • Backing up the data means backing up the container • All containers that mount that volume are reading and writing to the same space • Be careful not to destroy the data Container • Docker has limited data integrity protection
  • 30. Directory Mounts • A location on the host machine that is “mapped” to a mount point essentially in one or multiple containers • It is accessible and exists regardless of whether any containers are running or using it • It can be backed up as standard data storage • Access is controlled by host file permissions • It can’t be as easily moved to a new location • Be careful of tying yourself in knots with relative references to data volumes • Be VERY careful of launching a container if you don’t know the mount points that are defined inside it
  • 31. Directory Mounts vs Docker Data Volumes • A directory mount can be assigned to multiple containers even after they are created • A directory mount can point to any part of the host file system that the account running the docker container has access to • Directory Mounts have security and data loss risks that need to be carefully managed • Data volumes are created when the container is created and cannot be re- used directly by other containers • Docker data volumes are created within the docker file structure on the host and are managed (or not managed) separately from the container • Deleting a container will not remove the data volume
  • 32. Risks • Storage containers can easily be deleted • especially if it’s not clear that another container is using that storage • Directory mounts can be easily overwritten if another container runs with the same mount points • Deploying new code via a container that retains the storage references from a previous version will overwrite production storage • Ease of use and flexibility must be tempered with Devops process and planning
  • 34. Docker Networking • Docker can create a private network for each container it starts • Containers can be linked together to share the same private network and isolate themselves from other containers started by the same docker machine • by linking containers you can ensure if they are killed then recreated with the same name, the network link is maintained • We can also tell the docker server to expose specific ports inside the containers to external ports that can be reached outside the containers. For instance a port 25 SMTP listener or 443 web server (old school method)
  • 35. Bridged Driver Networks • Each container is created as part of a defined bridged network • The bridge networks are private and on their own subnet • Containers on the same bridge network can be seen and addressed within their own private network without routing traffic through the host
  • 36. Overlay Driver Networks • Each container is created as part of a defined overlay network • Overlays are similar to bridge networks but are designed to work with multi host networks so containers do not have to be on the same host to see each other • Docker swarm is used to manage and route traffic between containers using the overlay driver
  • 37. Port Forwarding • When running the containers we specify both a port to open and how it is reached from the host machine • This port forwarding can then be used by other containers to talk to each other via the host
  • 38. Macvlan Drivers • Each container is created as part of the host network • The routing and accessibility is controlled as if the container were simply another machine on the host network • This makes macvlan the most lightweight of drivers
  • 39. Summary • Docker is a great architecture for temporary or changing environments such as development • It really does require understanding and a level of comfort with Linux OS • Containers are designed to destroy themselves and their content unless you specify otherwise so in most cases we want to keep content outside the container • Domino runs well on Docker for Linux but it really isn’t a collection of microservices (yet**) so isn’t taking advantage of the core architectural benefits of containers • ** hello HCL - one for the wishlist • Domino is very dependent on disk performance and I/O so choosing and optimising the right storage is critical • Deploying docker as production architecture for Domino is not something I’d recommend but for test, development or small scale failover it is a good solution