Skip to content

Commit 07f276c

Browse files
committed
fixed chapter titles and renamed/moved some of the files
1 parent 458c71b commit 07f276c

24 files changed

Lines changed: 49 additions & 47 deletions

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
**/.DS_Store
2+
readme.xml
3+
readme.html

chapters/container-cluster.adoc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
[[JavaEE_Application_Docker_Cluster]]
2+
## Java EE Application on Container Cluster
3+
14
A frequent requirement for Java EE based applications is running them on a cluster of application server. While setup and test can be complicated on developer machines, this is where Docker can play to it's full potential. With the help of images and automatic port mapping, we're ready to test Ticket Monster on a couple of WildFly instances and add and remove them randomly.
25

36
The diagram below shows what will be achieved in this section:

chapters/docker-basics.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Docker Basics
2+
13
Docker simplifies software delivery by making it easy to build and share images that contain your application’s entire environment, or application operating system.
24

35
**What does it mean by an application operating system ?**

chapters/docker-client.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Docker Client
2+
13
The client communicates with the demon process on your host and let's you work with images and containers.
24

35
Check if your client is working using the following command:
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Docker Command Cheatsheet
1+
## Common Docker Commands
2+
3+
Here is the list of commonly used Docker commands:
24

35
[width="100%", options="header"]
46
|==================

chapters/docker-compose.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Starting Multiple Containers Using Docker Compose
2+
13
Docker Compose script is only downloadable for OSX and Linux.
24

35
TODO: What are the exact steps to get it running on Windows?
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Verify Docker Configuration
2+
13
Check if your Docker Host is running:
24

35
[source, text]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Run Container
2+
13
The first step in running any application on Docker is to run an image. There are plenty of images available from the official Docker registry (aka link:https://hub.docker.com[Docker Hub]). To run any of them, you just have to ask the Docker Client to run it. The client will check if the image already exists on Docker Host. If it exists then it'll run it, otherwise the host will download the image and then run it.
24

35
### Pull Image
@@ -326,5 +328,3 @@ docker ps -a | grep wildfly | awk '{print $1}' | xargs docker rm
326328
----
327329
docker rm $(docker ps -aq)
328330
----
329-
330-
Common Docker commands are available in link:command-cheatsheet.adoc[Docker Command Cheatsheet].

chapters/docker-eclipse.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Docker Tools in Eclipse
2+
13
The Docker tooling is aimed at providing at minimum the same basic level features as the command-line interface, but also provide some advantages by having access to a full fledged UI.
24

35
### Install Docker Tools Plugins

chapters/docker-intellij.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
## Docker Tools in IntelliJ
2+
13
http://blog.jetbrains.com/idea/2015/03/docker-support-in-intellij-idea-14-1/

0 commit comments

Comments
 (0)