diff --git a/slides/airgapped/Importing-Images.md b/slides/airgapped/Importing-Images.md new file mode 100644 index 0000000..c905efa --- /dev/null +++ b/slides/airgapped/Importing-Images.md @@ -0,0 +1,44 @@ +class: title + +# Background containers + +![Background containers](images/title-background-containers.jpg) + +--- + +## Objectives + +Airgapped + +We will now see how to: + +* Run a non-interactive container. +* Run a container in the background. +* List running containers. +* Check the logs of a container. +* Stop a container. +* List stopped containers. + +--- + +## A non-interactive container + +We will run a small custom container. + +This container just displays the time every second. + +```bash +$ docker run jpetazzo/clock +Fri Feb 20 00:28:53 UTC 2015 +Fri Feb 20 00:28:54 UTC 2015 +Fri Feb 20 00:28:55 UTC 2015 +... +``` + +* This container will run forever. +* To stop it, press `^C`. +* Docker has automatically downloaded the image `jpetazzo/clock`. +* This image is a user image, created by `jpetazzo`. +* We will hear more about user images (and other types of images) later. + +--- \ No newline at end of file diff --git a/slides/intro-fd-docker.yml b/slides/intro-fd-docker.yml index 1a3e75b..51eeae4 100644 --- a/slides/intro-fd-docker.yml +++ b/slides/intro-fd-docker.yml @@ -34,9 +34,10 @@ content: - containers/Background_Containers.md - containers/Start_And_Attach.md - containers/Naming_And_Inspecting.md - - containers/Labels.md + #- containers/Labels.md #- containers/Getting_Inside-v2.md - containers/Initial_Images.md + - airgapped/Importing_Images.md - - containers/Building_Images_Interactively.md - containers/Building_Images_With_Dockerfiles.md diff --git a/slides/shared/about-slides-v2.md b/slides/shared/about-slides-v2.md index 0c73145..be9ca7f 100644 --- a/slides/shared/about-slides-v2.md +++ b/slides/shared/about-slides-v2.md @@ -26,9 +26,7 @@ (then open the file `@@HTML@@`) -- You will find new versions of these slides (and more) on the upstream repo: - - https://container.training/ +- You will find new versions of most these slides (and more) on the upstream repo: --- @@ -38,14 +36,15 @@ - These slides are written in Markdown -- The sources of these slides are available in a public GitHub repository: +- The sources of many slides are available in a public GitHub repository: https://@@GITREPO@@ - Typos? Mistakes? Questions? Feel free to hover over the bottom of the slide ... + .footnote[👇 Try it! The source file will be shown and you can view it on GitHub and fork and edit it.] - +-->