Skip to content

Commit 36175c6

Browse files
authored
Merge pull request #2844 from objectcomputing/feature-2843/upgrade-postgres
Upgrade test and docker-compose to postgres 17.2
2 parents 1d2e4f0 + 04e7ba2 commit 36175c6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3'
22
services:
33
postgresql:
4-
image: postgres:11.6
4+
image: postgres:17.2
55
environment:
66
POSTGRES_DB: checkinsdb
77
POSTGRES_USER: postgres

server/src/test/java/com/objectcomputing/checkins/services/TestContainersSuite.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
@MicronautTest(environments = {Environment.TEST}, transactional = false)
1919
public abstract class TestContainersSuite implements RepositoryFixture, TestPropertyProvider {
2020

21-
private static final PostgreSQLContainer<?> postgres = new PostgreSQLContainer<>("postgres:11.6");
21+
private static final PostgreSQLContainer<?> postgres = new PostgreSQLContainer<>("postgres:17.2");
2222

2323
@Inject
2424
private EmbeddedServer embeddedServer;

0 commit comments

Comments
 (0)