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

org.testcontainers.containers.PostgreSQLContainerProvider Maven / Gradle / Ivy

package org.testcontainers.containers;

/**
 * Factory for PostgreSQL containers.
 */
public class PostgreSQLContainerProvider extends JdbcDatabaseContainerProvider {
    @Override
    public boolean supports(String databaseType) {
        return databaseType.equals(PostgreSQLContainer.NAME);
    }

    @Override
    public JdbcDatabaseContainer newInstance(String tag) {
        return new PostgreSQLContainer(PostgreSQLContainer.IMAGE + ":" + tag);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy