All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.infobip.testcontainers.spring.redis.RedisContainerWrapper Maven / Gradle / Ivy

The newest version!
package com.infobip.testcontainers.spring.redis;

import org.testcontainers.containers.GenericContainer;

public class RedisContainerWrapper extends GenericContainer {

    public static final int PORT = 6379;

    public RedisContainerWrapper() {
        this("redis:6.2.6-alpine");
    }

    public RedisContainerWrapper(String dockerImageName) {
        super(dockerImageName);
        withExposedPorts(PORT);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy