aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDeterme, Sebastien (sd378r) <sd378r@intl.att.com>2018-05-24 17:52:25 +0200
committerDeterme, Sebastien (sd378r) <sd378r@intl.att.com>2018-05-24 17:52:25 +0200
commit73803ecb4fdd53dc5f78fe7bbd79bcb979a75183 (patch)
tree27afcfcbbdbb95f8fef8b3bd488537da7ec6ed89
parent26400da37d58d7e1943c1723e4b60b3d967765b8 (diff)
Add commands to debug
Debug the docker build that is still failing Issue-ID: CLAMP-150 Change-Id: Iad957e0e1da9d1f96cc287a1434a13a255344c6e Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
-rw-r--r--pom.xml60
1 files changed, 57 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index 80668523..3d4444ac 100644
--- a/pom.xml
+++ b/pom.xml
@@ -571,7 +571,7 @@
<version>1.6.0</version>
<executions>
<execution>
- <id>docker_info</id>
+ <id>docker_info0</id>
<phase>validate</phase>
<goals>
<goal>exec</goal>
@@ -585,7 +585,7 @@
</configuration>
</execution>
<execution>
- <id>docker_info2</id>
+ <id>docker_info1</id>
<phase>validate</phase>
<goals>
<goal>exec</goal>
@@ -594,7 +594,61 @@
<executable>docker</executable>
<arguments>
<argument>images</argument>
-
+ </arguments>
+ </configuration>
+ </execution>
+ <execution>
+ <id>docker_info2</id>
+ <phase>validate</phase>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <configuration>
+ <executable>ls</executable>
+ <arguments>
+ <argument>-latr</argument>
+ <argument>/var/run/docker.sock</argument>
+ </arguments>
+ </configuration>
+ </execution>
+
+ <execution>
+ <id>docker_info3</id>
+ <phase>validate</phase>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <configuration>
+ <executable>cat</executable>
+ <arguments>
+ <argument>/etc/hosts</argument>
+ </arguments>
+ </configuration>
+ </execution>
+ <execution>
+ <id>docker_info4</id>
+ <phase>validate</phase>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <configuration>
+ <executable>curl</executable>
+ <arguments>
+ <argument>-v</argument>
+ <argument>http://127.0.0.1:2375/info</argument>
+ </arguments>
+ </configuration>
+ </execution>
+ <execution>
+ <id>docker_info5</id>
+ <phase>validate</phase>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <configuration>
+ <executable>netstat</executable>
+ <arguments>
+ <argument>-tulnp</argument>
</arguments>
</configuration>
</execution>