Skip to content

Commit a6903dc

Browse files
committed
Misc readme updates
1 parent 0ca70f8 commit a6903dc

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

Diff for: 1-hello-docker/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Hello Docker
22

3-
We'll start with the simple hello world - though we'll run it from WITHIN Docker!
3+
We'll start with the simple hello world example though we'll run it from WITHIN Docker!
44

55
See: [https://hub.docker.com/_/hello-world](https://hub.docker.com/_/hello-world)
66

Diff for: 3-commandbox/README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
Let's see how quickly we can spin up a running Lucee server.
44

55
1. Navigate to this directory (/docker-101-hawaii-cfug/3-commandbox)
6-
2. Then run the following:
6+
2. Note: If you run this command from a different directory you will get an error about not being able to find index.cfm!
7+
3. Run the following:
78

8-
If you run this command from a different directory you will get an error about not being able to find index.cfm!
99

1010
```
1111
docker run -p 8080:8080 -v "$PWD:/app" ortussolutions/commandbox
@@ -47,6 +47,8 @@ Example:
4747
docker kill a8ac1df8775c
4848
```
4949

50+
5051
While this works it doesn't allow us a lot of options to configure things.
5152

53+
5254
We'll explore that in the next example.

Diff for: 4-dockerfile/README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@ While running Docker via the cli works - it becomes difficult to do more advance
44

55
Here we will introduce the 'Dockerfile'. A Dockerfile can be used to build our own image.
66

7-
We can run that image, share it with a co-worker or we could push it to a container registry so others may use it.
7+
You can install whatever you want and configure it however you like.
88

9-
This is a simple file which allows you to create an image and add additional configuration information.
9+
We can then run that image, share it with a co-worker or we could push it to a container registry so others may use it.
1010

1111
Building images is an advanced topic and I won't go into much detail her other than this simple example.
1212

13-
1413
Navigate to this directory (/docker-101-hawaii-cfug/4-dockerfile) and run the following:
1514

1615

0 commit comments

Comments
 (0)