aboutsummaryrefslogtreecommitdiffhomepage
path: root/ubuntu14.04-onbuild
diff options
context:
space:
mode:
authorWilliam Yeh <william.pjyeh@gmail.com>2015-05-15 09:09:13 +0800
committerWilliam Yeh <william.pjyeh@gmail.com>2015-05-15 09:09:13 +0800
commitd5790ee49c738ef715a208377908afc8ea0e8e65 (patch)
tree37c9edda990cfe3ed0042b0ffa38e3d5a7624d35 /ubuntu14.04-onbuild
parenta78235d8a46d406849dfa09d4387aa2928e5f462 (diff)
downloaddocker-ansible-d5790ee49c738ef715a208377908afc8ea0e8e65.tar.gz
docker-ansible-d5790ee49c738ef715a208377908afc8ea0e8e65.tar.zst
docker-ansible-d5790ee49c738ef715a208377908afc8ea0e8e65.zip
Add: diagnosis info (ansible_* variables) in *-onbuild images.
Diffstat (limited to 'ubuntu14.04-onbuild')
-rw-r--r--ubuntu14.04-onbuild/Dockerfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/ubuntu14.04-onbuild/Dockerfile b/ubuntu14.04-onbuild/Dockerfile
index c0e400f..a0e6580 100644
--- a/ubuntu14.04-onbuild/Dockerfile
+++ b/ubuntu14.04-onbuild/Dockerfile
@@ -36,6 +36,9 @@ COPY ansible-playbook-wrapper /usr/local/bin/
36ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update 36ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update
37ONBUILD WORKDIR /tmp 37ONBUILD WORKDIR /tmp
38ONBUILD COPY . /tmp 38ONBUILD COPY . /tmp
39ONBUILD RUN \
40 echo "===> Diagnosis: host information..." && \
41 ansible -c local -m setup all
39 42
40 43
41 44