<dependency>
<groupId>com.avides.springboot.springtainer</groupId>
<artifactId>springtainer-redis</artifactId>
<version>2.0.0</version>
<scope>test</scope>
</dependency>Properties consumed (in bootstrap.properties):
embedded.container.redis.enabled(default istrue)embedded.container.redis.startup-timeout(default is30)embedded.container.redis.docker-image(default isredis:6.2.22-alpine)embedded.container.redis.port(default is6379)
Properties provided (in application-it.properties):
embedded.container.redis.hostembedded.container.redis.port
Example for minimal configuration in application-it.properties:
spring.redis.host=${embedded.container.redis.host}
spring.redis.port=${embedded.container.redis.port}
spring.test.context.cache.maxSize=1 ships as a classpath spring.properties
resource inside springtainer-common itself, so it's picked up automatically for every consumer - no configuration
needed on your side. This bounds Spring's test-context cache so a no-longer-current context (and, via its
ContextClosedEvent listener, its embedded container) gets evicted and cleanly closed as soon as a differently-configured
context needs the slot, instead of piling up unclosed until the whole JVM exits.
This works the same way whether tests are launched via Maven Surefire/Failsafe or directly from an IDE's own test
runner (e.g. Eclipse), since Spring resolves it from the classpath (org.springframework.core.SpringProperties) rather
than from a JVM system property.
To reduce logging insert this into the logback-configuration:
<!-- Springtainer -->
<logger name="com.github.dockerjava" level="WARN" />The container exports multiple labels to analyze running springtainers:
SPRINGTAINER_SERVICE=redisSPRINGTAINER_IMAGE=${embedded.container.redis.docker-image}SPRINGTAINER_STARTED=$currentTimestamp