Fix image paths

This commit is contained in:
Jérôme Petazzoni
2017-11-04 11:45:00 -07:00
parent 2f4dfe7b6f
commit 5a58b17bb5
23 changed files with 39 additions and 39 deletions

View File

@@ -62,7 +62,7 @@ chapters:
- This is our collective Docker knowledge:
![Bell Curve](bell-curve.jpg)
![Bell Curve](images/bell-curve.jpg)
---

View File

@@ -3,7 +3,7 @@ class: title
# Advanced Dockerfiles
![construction](Dockerfile_Reference/construction.jpg)
![construction](images/construction.jpg)
---

View File

@@ -3,7 +3,7 @@ class: title
# Ambassadors
![](Ambassadors/ambassador.jpg)
![](images/ambassador.jpg)
---
@@ -40,7 +40,7 @@ ambassador containers.
---
![ambassador](Ambassadors/diagram.png)
![ambassador](images/diagram.png)
---

View File

@@ -3,7 +3,7 @@ class: title
# Background Containers
![Background Containers](Background_Containers/background-containers.jpg)
![Background Containers](images/background-containers.jpg)
---

View File

@@ -3,7 +3,7 @@ class: title
# Building Docker images with a Dockerfile
![construction](Building_Images_With_Dockerfiles/construction.jpg)
![construction](images/construction.jpg)
---

View File

@@ -3,7 +3,7 @@ class: title
# CMD and ENTRYPOINT
![Container entry doors](Cmd_And_Entrypoint/entrypoint.jpg)
![Container entry doors](images/entrypoint.jpg)
---

View File

@@ -52,7 +52,7 @@ Before diving in, let's see a small example of Compose in action.
## Compose in action
![composeup](Compose_For_Dev_Stacks/composeup.gif)
![composeup](images/composeup.gif)
---
@@ -96,7 +96,7 @@ including linking the relevant containers together.
Verify that the app is running at `http://<yourHostIP>:8000`.
![composeapp](Compose_For_Dev_Stacks/composeapp.png)
![composeapp](images/composeapp.png)
---

View File

@@ -3,7 +3,7 @@ class: title
# Connecting Containers With Links
![graph](Connecting_Containers_With_Links/graph.gif)
![graph](images/graph.gif)
---

View File

@@ -3,7 +3,7 @@ class: title
# The Container Network Model
![A denser graph network](Container_Network_Model/complex-network.jpg)
![A denser graph network](images/complex-network.jpg)
---
@@ -211,7 +211,7 @@ $ docker ps -l
* If we connect to the application now, we will see an error page:
.small[
![Trainingwheels error](Container_Network_Model/trainingwheels-error.png)
![Trainingwheels error](images/trainingwheels-error.png)
]
* This is because the Redis service is not running.
@@ -242,7 +242,7 @@ $ docker run --net dev --name redis -d redis
* If we connect to the application now, we should see that the app is working correctly:
.small[
![Trainingwheels OK](Container_Network_Model/trainingwheels-ok.png)
![Trainingwheels OK](images/trainingwheels-ok.png)
]
* When the app tries to resolve `redis`, instead of getting a DNS error, it gets the IP address of our Redis container.

View File

@@ -3,7 +3,7 @@ class: title
# Container Networking Basics
![A dense graph network](Container_Networking_Basics/network.jpg)
![A dense graph network](images/network.jpg)
---
@@ -69,7 +69,7 @@ But first, let's make sure that everything works properly.
Point your browser to the IP address of your Docker host, on the port
shown by `docker ps` for container port 80.
![Screenshot](Container_Networking_Basics/web.png)
![Screenshot](images/web.png)
---

View File

@@ -3,7 +3,7 @@ class: title
# Copying files during the build
![Monks copying books](Copying_Files_During_Build/copy.jpg)
![Monks copying books](images/copy.jpg)
---

View File

@@ -2,7 +2,7 @@ class: title
# Course Conclusion
![end](Course_Conclusion/end.jpg)
![end](images/end.jpg)
---
@@ -29,4 +29,4 @@ class: title
Thank You!
.small[http://container.training/]
.small[http://container.training/]

View File

@@ -20,7 +20,7 @@ class: pic
## The VPS age (until 2007-2008)
![lightcont](About_Docker/lightcont.png)
![lightcont](images/lightcont.png)
---
@@ -36,7 +36,7 @@ class: pic
## The PAAS period (2008-2013)
![heroku 2007](About_Docker/heroku-first-homepage.png)
![heroku 2007](images/heroku-first-homepage.png)
---

View File

@@ -58,7 +58,7 @@ class: pic
## The deployment problem
![problem](About_Docker/problem.png)
![problem](images/problem.png)
---
@@ -66,7 +66,7 @@ class: pic
## The matrix from hell
![matrix](About_Docker/matrix.png)
![matrix](images/matrix.png)
---
@@ -74,7 +74,7 @@ class: pic
## The parallel with the shipping indsutry
![history](About_Docker/shippingindustry.png)
![history](images/shippingindustry.png)
---
@@ -82,7 +82,7 @@ class: pic
## Intermodal shipping containers
![shipping](About_Docker/shipping.png)
![shipping](images/shipping.png)
---
@@ -90,7 +90,7 @@ class: pic
## A new shipping ecosystem
![shipeco](About_Docker/shipeco.png)
![shipeco](images/shipeco.png)
---
@@ -98,7 +98,7 @@ class: pic
## A shipping container system for applications
![shipapp](About_Docker/appcont.png)
![shipapp](images/appcont.png)
---
@@ -106,7 +106,7 @@ class: pic
## Eliminate the matrix from hell
![elimatrix](About_Docker/elimatrix.png)
![elimatrix](images/elimatrix.png)
---

View File

@@ -3,7 +3,7 @@ class: title
# Our First Containers
![Plastic Containers](First_Containers/firstcontainers.jpg)
![Plastic Containers](images/firstcontainers.jpg)
---

View File

@@ -3,7 +3,7 @@ class: title
# Understanding Docker Images
![image](Initial_Images/image.png)
![image](images/image.png)
---
@@ -76,7 +76,7 @@ Let's give a couple of metaphors to illustrate those concepts.
Images are like templates or stencils that you can create containers from.
![stencil](Initial_Images/stenciling-wall.jpg)
![stencil](images/stenciling-wall.jpg)
---

View File

@@ -4,7 +4,7 @@ class: title
# Install Docker
![install](Install_Docker/install.jpg)
![install](images/install.jpg)
---

View File

@@ -3,7 +3,7 @@ class: title
# Local Development Workflow with Docker
![construction](Local_Development_Workflow/construction.jpg)
![construction](images/construction.jpg)
---
@@ -148,7 +148,7 @@ http://<yourHostIP>:80
We can see our company naming application.
![web application 1](Local_Development_Workflow/webapp1.png)
![web application 1](images/webapp1.png)
---
@@ -184,7 +184,7 @@ http://<yourHostIP>:80
We can see the updated color of our company naming application.
![web application 2](Local_Development_Workflow/webapp2.png)
![web application 2](images/webapp2.png)
---

View File

@@ -3,7 +3,7 @@ class: title
# Naming and inspecting containers
![Markings on container door](Naming_And_Inspecting/containermarkings.jpg)
![Markings on container door](images/containermarkings.jpg)
---

View File

@@ -2,7 +2,7 @@ class: title
# Our training environment
![SSH terminal](Use_Training_VM/ssh.jpg)
![SSH terminal](images/ssh.jpg)
---

View File

@@ -3,7 +3,7 @@ class: title
# Working with Volumes
![volume](Working_With_Volumes/volume.jpg)
![volume](images/volume.jpg)
---

View File

@@ -52,7 +52,7 @@ chapters:
--
![CONTAINERS, I TELL YOU](aj-containers.jpeg)
![CONTAINERS, I TELL YOU](images/aj-containers.jpeg)
--

View File

@@ -59,7 +59,7 @@ chapters:
- This is our collective Docker knowledge:
![Bell Curve](bell-curve.jpg)
![Bell Curve](images/bell-curve.jpg)
---