diff options
author | Determe, Sebastien (sd378r) <sd378r@intl.att.com> | 2018-05-24 14:51:00 +0200 |
---|---|---|
committer | Determe, Sebastien (sd378r) <sd378r@intl.att.com> | 2018-05-24 14:51:23 +0200 |
commit | 8302205e25f9f78cdfeb36b269ea228c687bc1ab (patch) | |
tree | ace4e81873c0ed1ddbe851c691a5601bf72dc57c /pom.xml | |
parent | 52020d3c109d80755b54c201e33fae0a52c49f2b (diff) |
New attempt to fix docker build
Set the Dockerhost to localhost:2375 in order to fix the build.
Issue-ID: CLAMP-150
Change-Id: I222d5d0fa78e1186ed5dd3e012938ea61defad44
Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 42 |
1 files changed, 1 insertions, 41 deletions
@@ -565,46 +565,6 @@ </resources> <plugins> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>exec-maven-plugin</artifactId> - <version>1.6.0</version> - <executions> - <execution> - <id>docker_info</id> - <phase>validate</phase> - <goals> - <goal>exec</goal> - </goals> - </execution> - </executions> - <configuration> - <executable>ps</executable> - <arguments> - <argument>-ef</argument> - </arguments> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-antrun-plugin</artifactId> - <version>1.1</version> - <executions> - <execution> - <phase>validate</phase> - <goals> - <goal>run</goal> - </goals> - <configuration> - <tasks> - <echo>******** Displaying value of properties ********</echo> - <echo>http proxy:${env.HTTP_PROXY}</echo> - <echo>https proxy:${env.HTTPS_PROXY}</echo> - </tasks> - </configuration> - </execution> - </executions> - </plugin> <!-- Scan Clamp code and generate the swagger.json file with all the APIs --> <plugin> <groupId>com.sebastian-daschner</groupId> @@ -807,7 +767,7 @@ <artifactId>docker-maven-plugin</artifactId> <version>1.1.0</version> <configuration> - <dockerHost>unix:///var/run/docker.sock</dockerHost> + <dockerHost>tcp://localhost:2375</dockerHost> <imageName>onap/clamp</imageName> <dockerDirectory>src/main/docker</dockerDirectory> <serverId>docker-hub</serverId> |