-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Description
Issue found when attempting to run the test in the spring boot example here:
https://github.com/testcontainers/testcontainers-java-examples/tree/master/spring-boot
Environment
- Ubuntu 16.04
- docker 1.13.1
- IntelliJ IDEA
This is the output from executing the maven test phase: build_output.txt
I verified the version by adding the following dependency to the pom.xml
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<version>1.1.9</version>
</dependency>
@bsideup identified issue #270 as the possible cause.
After testing with version 1.1.7 the test passed. So it's likely a regression caused by the above issue.
Just an extra detail. After the test passed using version 1.1.7 I recompiled with 1.1.9 and the test passed. I had to manually delete the redis image to cause the error to occur again. So if you already have the required image in your local environment you may need to remove it to reproduce.