Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions quarkus/admin/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,4 @@ quarkus.index-dependency.guava.group-id=com.google.guava
quarkus.index-dependency.guava.artifact-id=guava
quarkus.index-dependency.protobuf.group-id=com.google.protobuf
quarkus.index-dependency.protobuf.artifact-id=protobuf-java
quarkus.datasource.devservices.image-name=postgres:17-alpine
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@
# Per-test specific configuration should use QuarkusTestProfile

quarkus.log.file.enable=false
quarkus.datasource.devservices.image-name=postgres:17-alpine
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public void init(Map<String, String> initArgs) {
@SuppressWarnings("resource")
public Map<String, String> start() {
postgres =
new PostgreSQLContainer<>(DockerImageName.parse("postgres:17"))
new PostgreSQLContainer<>(DockerImageName.parse("postgres:17-alpine"))
.withDatabaseName("polaris_db")
.withUsername("polaris")
.withPassword("polaris");
Expand Down