Example: biology

A Hands-on Introduction to Docker - Carnegie Mellon University

1A Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass1 SATURN2017 Hands on Introduction to Docker 2017 Len BassA Hands on Introduction to DockerLen Bass2A Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass2 SATURN2017 Setting expectationsThis is an Introduction to Docker intended for those who have no hands on experience with you have used Docker you will likely not get much from this material (and hands on portion) is taken from the course that I teach at CMU called DevOps: Engineering for Deployment and Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass3 SATURN2017 LogisticsYou should have installed Docker on your laptop either in native mode or using Docker Toolbox.

2017. Setting expectations. ... • A directory structure is set up but only a bare bones OS has been loaded. 18 A Hands on Introduction to Docker May 1–4, 2017 ©2017 Len Bass SATURN 2017 ... autoscaling facilities of cloud provider. AWS has …

Tags:

  2017, Directory, Provider

Information

Domain:

Source:

Link to this page:

Please notify us if you found a problem with this document:

Other abuse

Transcription of A Hands-on Introduction to Docker - Carnegie Mellon University

1 1A Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass1 SATURN2017 Hands on Introduction to Docker 2017 Len BassA Hands on Introduction to DockerLen Bass2A Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass2 SATURN2017 Setting expectationsThis is an Introduction to Docker intended for those who have no hands on experience with you have used Docker you will likely not get much from this material (and hands on portion) is taken from the course that I teach at CMU called DevOps: Engineering for Deployment and Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass3 SATURN2017 LogisticsYou should have installed Docker on your laptop either in native mode or using Docker Toolbox.

2 Make sure Hello World works (from the installation instructions).Make sure you have access to the internet since you will be downloading Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass4 SATURN2017 OutlineIntroduction to DockerHands on What s left?5A Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass5 SATURN2017 IsolationProcess Isolate address space No isolation for files or networks LightweightVirtual Machine Isolate address space isolate files and networks Heavyweight6A Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass6 SATURN2017 ContainersProcess Isolate address space No isolation for files or networks LightweightVirtual Machine Isolate address space isolate files and networks HeavyweightContainer Isolate address space isolate files and networks Lightweight7A Hands on Introduction to DockerMay 1 4.

3 2017 2017 Len Bass7 SATURN2017 Docker containers8A Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass8 SATURN2017 Docker ArchitectureDocker daemon Lives on the host Responds to dockercommandsDocker daemon Instantiates images and creates containersImage is instantiated to form container9A Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass9 SATURN2017 LayersA Docker container image is structured in terms of layers .Process for building image Start with base image Load software desired Commit base image+software to form new image New image can then be base for more softwareImage is what is transferred10A Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass10 SATURN2017 Loading of softwareOS is ~ 1GB(yte)Fast network is ~ 1Gb(it) rated Since there are 8 bits per byte, transferring an OS should take 8 a 1Gb rated network is ~35Mb in practiceThis means loading an OS is >30 secondsConsequently, sharing an OS saves >30 seconds per instance.

4 Sharing other software saves more* , Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass11 SATURN2017 Exploiting layersWhen an image is updated, only update new layersUnchanged layers do not need to be updatedConsequently, less software is transferred and an update is Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass12 SATURN2017 Trade offsVirtual machine gives you all the freedom you have with bare metal Choice of operating system Total control over networking arrangement and file structuresContainer is constrained in terms of operating systems available Currently just Linux but soon Windows and OSX Provides limited networking options Provides limited file structuring options13A Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass13 SATURN2017 OutlineIntroduction to DockerHands on What s left?

5 14A Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass14 SATURN2017 Hands on portionIf you have loaded Docker Toolbox, you have a copy of VirtualBoxSet port forwarding on default so that 8080 on host is forwarded to 8080 on Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass15 SATURN2017docker pull ubuntuExecute Docker pull Ubuntu This loads an image from the Docker libraryThe image contains bare copy of ubuntu16A Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass16 SATURN2017docker imagesExecute Docker images This generates a list of images known to Docker on your machineYou should see Hello World and ubuntu17A Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass17 SATURN2017docker run i t ubuntu Execute Docker run i t UbuntuThis executes an image.

6 An executing image is called a container .You are now inside the ls . A directory structure is set up but only a bare bones OS has been loaded18A Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass18 SATURN2017 Install software on containerExecuteapt-get updateapt-get install wgetapt-get install nodejsapt-get install npm<cntl d>This installs the software you will use during this session and exits the container19A Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass19 SATURN2017docker ps aExecute Docker ps a This generates a list of all of the containers that have been run20A Hands on Introduction to DockerMay 1 4.

7 2017 2017 Len Bass20 SATURN2017 Output from Docker ps -aCONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES174268c64fbd ubuntu "/bin/bash" 7 minutes ago Exited (0) About a minute ago sharp_mcnulty54ae910238b3 hello-world "/hello" 53 minutes ago Exited (0) 53 minutes ago practical_euler21A Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass21 SATURN2017docker commit sharp_mcnulty saturnNote that the ubuntu container has a name of sharp_mcnulty (on my machine).

8 It will be different on yours. Docker commit sharp_mcnulty saturn creates an image with the name saturn 22A Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass22 SATURN2017 Execute Docker images REPOSITORY TAG IMAGE ID CREATED SIZE saturn latest a70567971230 13 seconds ago 456 MBubuntu latest 0ef2e08ed3fa 8 days ago 130 MBhello-world latest 48b5124b2768 7 weeks ago k23A Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass23 SATURN2017 Execute run i t Saturn You are back inside a container.

9 Load application:wget Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass24 SATURN2017 Exit the container - <cntl d>25A Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass25 SATURN2017 List containers$ Docker ps -aCONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES9c4b32145fa3 saturn "/bin/bash" 2 minutes ago Exited (0) 8 seconds ago reverent_lewin174268c64fbd ubuntu "/bin/bash" 30 minutes ago Exited (0) 24 minutes ago sharp_mcnulty54ae910238b3 hello-world "/hello" About an hour ago Exited (0)

10 About an hour ago practical_euler26A Hands on Introduction to DockerMay 1 4, 2017 2017 Len Bass26 SATURN2017 Make an image called ipshowdocker commit reverent_lewin ipshow$ Docker imagesREPOSITORY TAG IMAGE ID CREATED SIZE ipshow latest 8f7afedea65d 6 seconds ago 456 MBsaturn latest a70567971230 11 minutes ago 456 MB<none> <none> b348af319cbc 21 minutes ago 456 MBubuntu latest 0ef2e08ed3fa 8 days ago 130 MBhello-world latest 48b5124b2768 7 weeks ago


Related search queries