File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
main/java/org/testcontainers/containers
test/java/org/testcontainers Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1616
1717public class PrestoContainer <SELF extends PrestoContainer <SELF >> extends JdbcDatabaseContainer <SELF > {
1818 public static final String NAME = "presto" ;
19- private static final DockerImageName DEFAULT_IMAGE_NAME = DockerImageName .parse ("prestosql /presto" );
20- public static final String IMAGE = "prestosql /presto" ;
19+ private static final DockerImageName DEFAULT_IMAGE_NAME = DockerImageName .parse ("ghcr.io/trinodb /presto" );
20+ public static final String IMAGE = "ghcr.io/trinodb /presto" ;
2121 public static final String DEFAULT_TAG = "344" ;
2222
2323 public static final Integer PRESTO_PORT = 8080 ;
Original file line number Diff line number Diff line change 33import org .testcontainers .utility .DockerImageName ;
44
55public interface PrestoTestImages {
6- DockerImageName PRESTO_TEST_IMAGE = DockerImageName .parse ("prestosql /presto:344" );
7- DockerImageName PRESTO_PREVIOUS_VERSION_TEST_IMAGE = DockerImageName .parse ("prestosql /presto:343" );
6+ DockerImageName PRESTO_TEST_IMAGE = DockerImageName .parse ("ghcr.io/trinodb /presto:344" );
7+ DockerImageName PRESTO_PREVIOUS_VERSION_TEST_IMAGE = DockerImageName .parse ("ghcr.io/trinodb /presto:343" );
88}
You can’t perform that action at this time.
0 commit comments