dockerandjenkins citz2014

20
Docker & Jenkins continuous integration from scratch Martin Kenneth Michalsky Senior QE

Upload: martin-kenneth-michalsky

Post on 06-Jul-2015

34 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Dockerandjenkins citz2014

Docker & Jenkins continuous integration from scratch

Martin Kenneth Michalsky

Senior QE

Page 2: Dockerandjenkins citz2014
Page 3: Dockerandjenkins citz2014

Por favor, mantenga su

celular en modo silencioso

Page 4: Dockerandjenkins citz2014

4

Docker

A portable, lightweight application runtime and app packaging tool.

Page 5: Dockerandjenkins citz2014

5

Jenkins

A continuous integration Multiplatform tool written in Java

Page 6: Dockerandjenkins citz2014

6

Overview

Page 7: Dockerandjenkins citz2014

7

Docker Commands

Page 8: Dockerandjenkins citz2014

8

Version

Returns current version and build

docker version

Page 9: Dockerandjenkins citz2014

9

Pull

Pull an image from registry

docker pull busybox:latest

Page 10: Dockerandjenkins citz2014

10

images

List local images available

docker images

Page 11: Dockerandjenkins citz2014

11

run

Run a container of an exisitng image

Could be interactive or detached

Port, name and other attributes could be assigned

docker run -i -t debian:wheezy /bin/bash

docker run -d -t debian:wheezy /bin/bashdocker run --name containersample -d -t debian:wheezy /bin/bash

Page 12: Dockerandjenkins citz2014

12

ps

List containers

docker ps

docker ps -a

Page 13: Dockerandjenkins citz2014

13

Start/Stop

Start or stop an existing container

docker stop containersample

docker start containersample

Page 14: Dockerandjenkins citz2014

14

rm

removes a stopped container

docker rm containersample

Page 15: Dockerandjenkins citz2014

15

build

builds an image from a dockerfile

wget https://raw.githubusercontent.com/kassanmoor/fossildocker/master/Dockerfile

docker build -t imagesample /root/

Page 16: Dockerandjenkins citz2014

16

Online Resources

Page 17: Dockerandjenkins citz2014

17

Docker resources

https://www.docker.com

http://www.centurylinklabs.com

https://www.tutum.co

Page 18: Dockerandjenkins citz2014

18

Jenkins resources

http://jenkins-ci.org

http://blog.cloudbees.com

Page 19: Dockerandjenkins citz2014

19

Q&A

Page 20: Dockerandjenkins citz2014

20