File tree 1 file changed +3
-8
lines changed
spring-data-jdbc/src/test/java/org/springframework/data/jdbc/testing
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
33
33
34
34
public static final String NAME = "gaussdb" ;
35
35
36
- public static final String IMAGE = "opengauss /opengauss" ;
36
+ public static final String IMAGE = "enmotech /opengauss-lite " ;
37
37
38
- public static final String DEFAULT_TAG = "latest " ;
38
+ public static final String DEFAULT_TAG = "5.0.3 " ;
39
39
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 );
42
41
43
42
public static final Integer GaussDB_PORT = 8000 ;
44
43
@@ -56,10 +55,6 @@ public GaussDBContainer() {
56
55
this (DEFAULT_IMAGE_NAME .withTag (DEFAULT_TAG ));
57
56
}
58
57
59
- public GaussDBContainer (final String dockerImageName ) {
60
- this (DockerImageName .parse (dockerImageName ));
61
- }
62
-
63
58
public GaussDBContainer (final DockerImageName dockerImageName ) {
64
59
super (dockerImageName );
65
60
setWaitStrategy (new WaitStrategy () {
You can’t perform that action at this time.
0 commit comments