We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c021655 commit 576269aCopy full SHA for 576269a
src/test/java/examples/custom_render/PgContainer.java
@@ -19,11 +19,12 @@
19
20
import org.apache.ibatis.datasource.unpooled.UnpooledDataSource;
21
import org.testcontainers.containers.PostgreSQLContainer;
22
+import org.testcontainers.utility.DockerImageName;
23
24
public class PgContainer extends PostgreSQLContainer<PgContainer> {
25
26
public PgContainer(String initScriptPath) {
- super();
27
+ super(DockerImageName.parse(IMAGE).withTag(DEFAULT_TAG));
28
withInitScript(initScriptPath);
29
}
30
0 commit comments