Skip to content

Commit 25caaf8

Browse files
authored
Merge pull request #4 from jakewright/learn-docker
Add Docker in 12 Minutes source code
2 parents 01a4825 + b2b32da commit 25caaf8

File tree

4 files changed

+16
-1
lines changed

4 files changed

+16
-1
lines changed

docker/01-getting-started/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
FROM php:apache
2+
COPY src/ /var/www/html/
3+
EXPOSE 80

docker/01-getting-started/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Learn Docker in 12 Minutes
2+
3+
In this 12 minute video, I introduce Docker and show you how to build and image and run a container.
4+
5+
[Watch Learn Docker in 12 Minutes](https://youtu.be/YFl2mCHdv24)
6+
7+
# Getting started
8+
9+
This directory contains the source code from the tutorial.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?php
2+
3+
echo "Hello, World!";

docker/03-deployment/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Docker Cloud is a service that automates the deployment of Docker images.
44
In this tutorial, I show how to use Docker Cloud to easily deploy Docker containers based on Dockerfiles in a GitHub or BitBucket repository.
55

6-
[Deploy Docker Containers with Docker Cloud](https://youtu.be/F82K07NmRpk)
6+
[Watch Deploy Docker Containers with Docker Cloud](https://youtu.be/F82K07NmRpk)
77

88
# Getting started
99

0 commit comments

Comments
 (0)