Skip to content

Migrate postgis image to the postgis/postgis docker hub repo. #2797

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 4, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
public class PostgisContainerProvider extends JdbcDatabaseContainerProvider {

private static final String NAME = "postgis";
private static final String DEFAULT_TAG = "10";
private static final String DEFAULT_IMAGE = "mdillon/postgis";
private static final String DEFAULT_TAG = "12-3.0";
private static final String DEFAULT_IMAGE = "postgis/postgis";
public static final String USER_PARAM = "user";
public static final String PASSWORD_PARAM = "password";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static Iterable<Object[]> data() {
return asList(
new Object[][]{
{"jdbc:tc:postgis://hostname/databasename?user=someuser&password=somepwd", EnumSet.of(Options.JDBCParams)},
{"jdbc:tc:postgis:9.6://hostname/databasename?user=someuser&password=somepwd", EnumSet.of(Options.JDBCParams)},
{"jdbc:tc:postgis:9.6-2.5://hostname/databasename?user=someuser&password=somepwd", EnumSet.of(Options.JDBCParams)},
});
}
}