+ All Categories
Home > Technology > Docker 0.11 at MaxCDN meetup in Los Angeles

Docker 0.11 at MaxCDN meetup in Los Angeles

Date post: 26-Jan-2015
Category:
Upload: jerome-petazzoni
View: 107 times
Download: 0 times
Share this document with a friend
Description:
Docker is the Open Source container engine. It lets you author, run, and manage software containers. Escape from dependency hell, and make deployment a breeze! This presentation includes the standard Docker intro (actualized for Docker 0.11) as well as some insights about how to perform orchestration and multi-host container linking.
Popular Tags:
63
Transcript
Page 1: Docker 0.11 at MaxCDN meetup in Los Angeles
Page 2: Docker 0.11 at MaxCDN meetup in Los Angeles

Introduction to Docker

May 2014—Docker 0.11.0XXXXX 0.11.1

Page 3: Docker 0.11 at MaxCDN meetup in Los Angeles

@jpetazzo

● Wrote dotCloud PAAS deployment tools

– EC2, LXC, Puppet, Python, Shell, ØMQ...● Docker contributor

– Docker-in-Docker, VPN-in-Docker,router-in-Docker...CONTAINERIZE ALL THE THINGS!

● Runs Docker in production

– You shouldn't do it, but here's how anyway!

Page 4: Docker 0.11 at MaxCDN meetup in Los Angeles

What?

Page 5: Docker 0.11 at MaxCDN meetup in Los Angeles

Why?

Page 6: Docker 0.11 at MaxCDN meetup in Los Angeles

Deploy everything

● Webapps● Backends● SQL, NoSQL● Big data● Message queues● … and more

Page 7: Docker 0.11 at MaxCDN meetup in Los Angeles

Deploy almost everywhere

● Linux servers● VMs or bare metal● Any distro● Kernel 3.8 (or RHEL 2.6.32)

Currently: focus on x86_64.

(But people reported success on arm.)

Page 8: Docker 0.11 at MaxCDN meetup in Los Angeles

Deploy reliably & consistently

Page 9: Docker 0.11 at MaxCDN meetup in Los Angeles
Page 10: Docker 0.11 at MaxCDN meetup in Los Angeles

Deploy reliably & consistently

● If it works locally, it will work on the server● With exactly the same behavior● Regardless of versions● Regardless of distros● Regardless of dependencies

Page 11: Docker 0.11 at MaxCDN meetup in Los Angeles

Deploy efficiently

● Containers are lightweight– Typical laptop runs 10-100 containers easily

– Typical server can run 100-1000 containers

● Containers can run at native speeds– Lies, damn lies, and other benchmarks:

http://qiita.com/syoyo/items/bea48de8d7c6d8c73435

Page 12: Docker 0.11 at MaxCDN meetup in Los Angeles

The performance!It's over 9000!

Page 13: Docker 0.11 at MaxCDN meetup in Los Angeles

Is there really no overhead at all?

● Processes are isolated,but run straight on the host

● CPU performance = native performance

● Memory performance = a few % shaved off for (optional) accounting

● Network and disk I/O performance = small overhead; can be reduced to zero

Page 14: Docker 0.11 at MaxCDN meetup in Los Angeles

… Container ?

Page 15: Docker 0.11 at MaxCDN meetup in Los Angeles

High level approach:it's a lightweight VM

● Own process space● Own network interface● Can run stuff as root● Can have its own /sbin/init

(different from the host)

« Machine Container »

Page 16: Docker 0.11 at MaxCDN meetup in Los Angeles

Low level approach:it's chroot on steroids

● Can also not have its own /sbin/init● Container = isolated process(es)● Share kernel with host● No device emulation (neither HVM nor PV)

« Application Container »

Page 17: Docker 0.11 at MaxCDN meetup in Los Angeles

How does it work?Isolation with namespaces

● pid● mnt● net● uts● ipc● user

Page 18: Docker 0.11 at MaxCDN meetup in Los Angeles

How does it work?Isolation with cgroups

● memory● cpu● blkio● devices

Page 19: Docker 0.11 at MaxCDN meetup in Los Angeles

How does it work?Copy-on-write storage

● Create a new machine instantly(Instead of copying its whole filesystem)

● Storage keeps track of what has changed● Multiple storage plugins available

(AUFS, device mapper, BTRFS, VFS...)

Page 20: Docker 0.11 at MaxCDN meetup in Los Angeles

Union Filesystems(AUFS, overlayfs)

Copy-on-writeblock devices

Snapshotting filesystems

Provisioning SuperfastSupercheap

FastCheap

FastCheap

Changingsmall files

SuperfastSupercheap

FastCostly

FastCheap

Changinglarge files

Slow (first time)Inefficient (copy-up!)

FastCheap

FastCheap

Diffing Superfast Slow Superfast

Memory usage Efficient Inefficient(at high densities)

Inefficient(but may improve)

Drawbacks Random quirksAUFS not mainline

Higher disk usageGreat performance (except diffing)

ZFS not mainlineBTRFS not as nice

Bottom line Ideal for PAAS and high density things

Dodge Ram 3500 This is the future(Probably!)

Storage options

Page 21: Docker 0.11 at MaxCDN meetup in Los Angeles

Alright, I get this.Containers = nimble VMs.

Page 22: Docker 0.11 at MaxCDN meetup in Los Angeles
Page 23: Docker 0.11 at MaxCDN meetup in Los Angeles

The container metaphor

Page 24: Docker 0.11 at MaxCDN meetup in Los Angeles

Problem: shipping goods

? ? ? ? ? ?

? ? ? ? ? ?

? ? ? ? ? ?

? ? ? ? ? ?

? ? ? ? ? ?

? ? ? ? ? ?

Page 25: Docker 0.11 at MaxCDN meetup in Los Angeles

Solution:the intermodal shipping container

Page 26: Docker 0.11 at MaxCDN meetup in Los Angeles

Solved!

Page 27: Docker 0.11 at MaxCDN meetup in Los Angeles

Problem: shipping code

? ? ? ? ? ?

? ? ? ? ? ?

? ? ? ? ? ?

? ? ? ? ? ?

? ? ? ? ? ?

? ? ? ? ? ?

Page 28: Docker 0.11 at MaxCDN meetup in Los Angeles

Solution:the Linux container

Page 29: Docker 0.11 at MaxCDN meetup in Los Angeles

Solved!

Page 30: Docker 0.11 at MaxCDN meetup in Los Angeles

Separation of concerns:Dave the Developer

● Inside my container:– my code

– my libraries

– my package manager

– my app

– my data

Page 31: Docker 0.11 at MaxCDN meetup in Los Angeles

Separation of concerns:Oscar the Ops guy

● Outside the container:– logging

– remote access

– network configuration

– monitoring

Page 32: Docker 0.11 at MaxCDN meetup in Los Angeles
Page 33: Docker 0.11 at MaxCDN meetup in Los Angeles

Docker-what?The Big Picture

● Open Source engine to commoditize LXC● Using copy-on-write for quick provisioning● Allowing to create and share images● Standard format for containers

(stack of layers; 1 layer = tarball+metadata)● Standard, reproducible way to easily build

trusted images (Dockerfile, Stackbrew...)

Page 34: Docker 0.11 at MaxCDN meetup in Los Angeles

Docker-what?History

● Rewrite of dotCloud internal container engine– original version: Python, tied to dotCloud PaaS

– released version: Go, legacy-free

Page 35: Docker 0.11 at MaxCDN meetup in Los Angeles

Docker-what?Under the hood

● The Docker daemon runs in the background– manages containers, images, and builds

– HTTP API (over UNIX or TCP socket)

– embedded CLI talking to the API

Page 36: Docker 0.11 at MaxCDN meetup in Los Angeles

Docker-what?Take me to your dealer

● Open Source– GitHub public repository + issue tracking

https://github.com/dotcloud/docker

● Nothing up the sleeve– public mailing lists (docker-user, docker-dev)

– IRC channels (Freenode: #docker #docker-dev)

– public decision process

– Docker Governance Advisory Board

Page 37: Docker 0.11 at MaxCDN meetup in Los Angeles

One-time setup

● On your servers (Linux)– Packages (Ubuntu, Debian, Fedora, Gentoo, Arch...)

– Single binary install (Golang FTW!)

– Easy provisioning on Rackspace, Digital Ocean, EC2, GCE...

● On your dev env (Linux, OS X, Windows)– Vagrantfile

– boot2docker (25 MB VM image)

– Natively (if you run Linux)

Page 38: Docker 0.11 at MaxCDN meetup in Los Angeles

The Docker workflow 1/2

● Work in dev environment(local machine or container)

● Other services (databases etc.) in containers(and behave just like the real thing!)

● Whenever you want to test « for real »:– Build in seconds

– Run instantly

Page 39: Docker 0.11 at MaxCDN meetup in Los Angeles

The Docker workflow 2/2

Satisfied with your local build?● Push it to a registry (public or private)● Run it (automatically!) in CI/CD● Run it in production● Happiness!

Something goes wrong? Rollback painlessly!

Page 40: Docker 0.11 at MaxCDN meetup in Los Angeles

Authoring imageswith run/commit

Page 41: Docker 0.11 at MaxCDN meetup in Los Angeles

1) docker run ubuntu bash

2) apt-get install this and that

3) docker commit <containerid> <imagename>

4) docker run <imagename> bash

5) git clone git://.../mycode

6) pip install -r requirements.txt

7) docker commit <containerid> <imagename>

8) repeat steps 4-7 as necessary

9) docker tag <imagename> <user/image>

10) docker push <user/image>

Page 42: Docker 0.11 at MaxCDN meetup in Los Angeles

Authoring imageswith run/commit

● Pros– Convenient, nothing to learn

– Can roll back/forward if needed

● Cons– Manual process

– Iterative changes stack up

– Full rebuilds are boring, error-prone

Page 43: Docker 0.11 at MaxCDN meetup in Los Angeles

Authoring imageswith a Dockerfile

Page 44: Docker 0.11 at MaxCDN meetup in Los Angeles

FROM ubuntu

RUN apt-get -y updateRUN apt-get install -y g++RUN apt-get install -y erlang-dev erlang-manpages erlang-base-hipe ...RUN apt-get install -y libmozjs185-dev libicu-dev libtool ...RUN apt-get install -y make wget

RUN wget http://.../apache-couchdb-1.3.1.tar.gz | tar -C /tmp -zxf-RUN cd /tmp/apache-couchdb-* && ./configure && make install

RUN printf "[httpd]\nport = 8101\nbind_address = 0.0.0.0" > /usr/local/etc/couchdb/local.d/docker.ini

EXPOSE 8101CMD ["/usr/local/bin/couchdb"]

docker build -t jpetazzo/couchdb .

Page 45: Docker 0.11 at MaxCDN meetup in Los Angeles

Authoring imageswith a Dockerfile

● Minimal learning curve● Rebuilds are easy● Caching system makes rebuilds faster● Single file to define the whole environment!

Page 46: Docker 0.11 at MaxCDN meetup in Los Angeles

Checkpoint

With Docker, I can:● put my software in containers● run those containers anywhere● write recipes to automatically build containers

But how do I:● run containers aplenty?● manage fleets of container hosts?● ship to, you know, production?

Page 47: Docker 0.11 at MaxCDN meetup in Los Angeles

Half Time… Questions so far ?

http://docker.io/

http://docker.com/

@docker

@jpetazzo

Page 48: Docker 0.11 at MaxCDN meetup in Los Angeles

What's new in 0.10?

● TLS auth for API● Tons of stability and usability improvements

(devicemapper, hairpin NAT, ptys...)● FreeBSD support (client)

Page 49: Docker 0.11 at MaxCDN meetup in Los Angeles

What's new in 0.11?

● SELinux support● --net flag for special network features

(you don't need to use pipework anymore!)● stability, stability, stability, stability

Page 50: Docker 0.11 at MaxCDN meetup in Los Angeles

Docker 1.0

● ☒ Multi-arch, multi-OS● ☒ Stable control API● ☒ Stable plugin API ● ☐ Resiliency● ☑ Clustering

Page 51: Docker 0.11 at MaxCDN meetup in Los Angeles

DoYou

EvenShip?

Page 52: Docker 0.11 at MaxCDN meetup in Los Angeles

Running (some) containers

● SSH to Docker host and manual pull+run● Fig

https://github.com/orchardup/fig● Maestro NG

https://github.com/signalfuse/maestro-ng● Replace yourself with a simple shell script

Page 53: Docker 0.11 at MaxCDN meetup in Los Angeles

Running (more) containers

More on thisin a minute.

Page 54: Docker 0.11 at MaxCDN meetup in Los Angeles

Identify your containers

● You can name your containers

docker run -d -name www_001 myapp

● Ensures uniqueness

Page 55: Docker 0.11 at MaxCDN meetup in Los Angeles

Connect your containers

● Links!

docker run -d -name frontdb mysqlimagedocker run -d -link frontdb:sql nginximage

→ environment vars are injected in web container

→ twelve-factors FTW!

Page 56: Docker 0.11 at MaxCDN meetup in Los Angeles

Connect your containersacross multiple hosts

● Ambassador pattern

host 1 (database)docker run -d -name frontdb mysqlimagedocker run -d -link frontdb:sql wiring

host 2 (web tier)docker run -d -name frontdb wiringdocker run -d -link frontdb:sql nginximage

Page 57: Docker 0.11 at MaxCDN meetup in Los Angeles

db host web host

database containerI'm frontdb!

web containerI want to talk to frontdb!

wiring containerI actually talk to frontdb!

wiring containerI pretend I'm frontdb!

dock

erlin

kdocker

link

?

Page 58: Docker 0.11 at MaxCDN meetup in Los Angeles
Page 59: Docker 0.11 at MaxCDN meetup in Los Angeles

db host web host

database containerI'm frontdb!

web containerI want to talk to frontdb!

wiring containerI actually talk to frontdb!

wiring containerI pretend I'm frontdb!

dock

erlin

kdocker

link

UNICORNS

Page 60: Docker 0.11 at MaxCDN meetup in Los Angeles

I can't afford Unicorns!

● Service discovery (registry):Zookeeper / Etcd / Consul

● Traffic routing:stunnel / haproxy / iptables

● Stay Tuned

Page 61: Docker 0.11 at MaxCDN meetup in Los Angeles

Running (more) containers

● OpenStack (Nova, Heat)● OpenShift (geard)● Other PAAS:

Deis, Cocaine (Yandex), Flynn...● Docker Executor for Mesos● Roll your own with the REST API

Page 62: Docker 0.11 at MaxCDN meetup in Los Angeles

Can we do better?

● The « dockermux » design pattern● Run something that:

– exposes the Docker API– talks to real Docker hosts– spins up more Docker hosts– takes care of scheduling, plumbing, scaling...

Page 63: Docker 0.11 at MaxCDN meetup in Los Angeles

Thank you! Questions?

http://docker.io/

http://docker.com/

@docker

@jpetazzo


Recommended