File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed
spring-data-jdbc/src/test/java/org/springframework/data/jdbc/testing Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -33,12 +33,11 @@ public class GaussDBContainer<SELF extends GaussDBContainer<SELF>> extends JdbcD
3333
3434 public static final String NAME = "gaussdb" ;
3535
36- public static final String IMAGE = "opengauss /opengauss" ;
36+ public static final String IMAGE = "enmotech /opengauss-lite " ;
3737
38- public static final String DEFAULT_TAG = "latest " ;
38+ public static final String DEFAULT_TAG = "5.0.3 " ;
3939
40- private static final DockerImageName DEFAULT_IMAGE_NAME = DockerImageName .parse ("opengauss/opengauss" )
41- .asCompatibleSubstituteFor ("gaussdb" );
40+ private static final DockerImageName DEFAULT_IMAGE_NAME = DockerImageName .parse (IMAGE );
4241
4342 public static final Integer GaussDB_PORT = 8000 ;
4443
@@ -56,10 +55,6 @@ public GaussDBContainer() {
5655 this (DEFAULT_IMAGE_NAME .withTag (DEFAULT_TAG ));
5756 }
5857
59- public GaussDBContainer (final String dockerImageName ) {
60- this (DockerImageName .parse (dockerImageName ));
61- }
62-
6358 public GaussDBContainer (final DockerImageName dockerImageName ) {
6459 super (dockerImageName );
6560 setWaitStrategy (new WaitStrategy () {
You can’t perform that action at this time.
0 commit comments