docker-maven-plugin icon indicating copy to clipboard operation
docker-maven-plugin copied to clipboard

A maven plugin to manage docker containers and images for integration tests.

Results 14 docker-maven-plugin issues
Sort by recently updated
recently updated
newest added

I have a container which needs to know its external address and port, so that it can publish that to another container that calls back to the first container. (Yes,...

If you forget the `` tag you get an `NullPointerException` instead of an error/warning.

This plugin is failing to build images when used with [Docker for Mac](https://beta.docker.com/docs/mac/getting-started/). The error is 'java.net.ConnectException: Connection refused'. DOCKER_HOST is set to `unix:///var/run/docker.sock` Is there a way to get...

I installed docker locally (mac book pro) and I successfully wrote a build script in maven which creates docker containers, executes tests and then terminates the containers. Very good. Now...

Basic implementation that writes all properties to a mappings file (the name and location are configurable). The file absolute file location is also exposed as the maven property ${docker.mappings.file}

I have the following config being used with docker-maven-plugin 5.0.0 ``` xml net.wouterdanes.docker docker-maven-plugin ${docker-maven.version} ${project.artifactId} pre-integration-test build-images ${project.artifactId} ${project.basedir}/src/main/docker/Dockerfile ${main-artifact} ${project.basedir}/src/main/docker/ / start start-containers pre-integration-test ${skip.run} true ${project.artifactId} ${project.artifactId}...

When the FROM image is taken from a private repository we get this error message: ERROR: Received unexpected HTTP status: 502 Connection refused The reason seems to be the fact...

This is a very basic implementation as it stands. Right now you have a few options: - `mvn docker:run` - Start up the containers - `mvn docker:build-images docker:run` - Build...

There is no good way to share information between MOJO's so I've used a maven property to pass over a comma separated list of image IDs.

f.ex in ${project.builddir}/docker-plugin/docker-mappings.properties That way the whole properties file can be loaded as system properties by the failsafe plugin.

enhancement
help wanted