Skip to content

Commit 081d1c7

Browse files
Update postgres Docker tag to v17.5
1 parent 3604278 commit 081d1c7

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3.8'
22
services:
33
database:
4-
image: postgres:17.2
4+
image: postgres:17.5
55
environment:
66
- POSTGRES_USER=test
77
- POSTGRES_PASSWORD=test

src/test/java/de/rieckpil/courses/AbstractIntegrationTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
public abstract class AbstractIntegrationTest {
4343

4444
static PostgreSQLContainer<?> database =
45-
new PostgreSQLContainer<>("postgres:17.2")
45+
new PostgreSQLContainer<>("postgres:17.5")
4646
.withDatabaseName("test")
4747
.withUsername("duke")
4848
.withPassword("s3cret");

src/test/java/de/rieckpil/courses/ApplicationIT.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class ApplicationIT {
3333

3434
@Container
3535
static PostgreSQLContainer<?> database =
36-
new PostgreSQLContainer<>("postgres:17.2")
36+
new PostgreSQLContainer<>("postgres:17.5")
3737
.withDatabaseName("test")
3838
.withUsername("duke")
3939
.withPassword("s3cret");

src/test/java/de/rieckpil/courses/book/management/BookSynchronizationListenerIT.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
class BookSynchronizationListenerIT {
4747

4848
static PostgreSQLContainer<?> database =
49-
new PostgreSQLContainer<>("postgres:17.2")
49+
new PostgreSQLContainer<>("postgres:17.5")
5050
.withDatabaseName("test")
5151
.withUsername("duke")
5252
.withPassword("s3cret");

src/test/java/de/rieckpil/courses/book/review/ReviewRepositoryNoInMemoryTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class ReviewRepositoryNoInMemoryTest {
2323

2424
@Container
2525
static PostgreSQLContainer<?> container =
26-
new PostgreSQLContainer<>("postgres:17.2")
26+
new PostgreSQLContainer<>("postgres:17.5")
2727
.withDatabaseName("test")
2828
.withUsername("duke")
2929
.withPassword("s3cret");

0 commit comments

Comments
 (0)