Skip to content

Commit

Permalink
update db for dev docker setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mozzy11 committed Dec 4, 2023
1 parent 2652e37 commit 2dac9d4
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 33 deletions.
2 changes: 1 addition & 1 deletion build.docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:

database:
container_name: openelisglobal-database
image: postgres:9.5
image: postgres:14.4
ports:
- "15432:5432"
restart: always
Expand Down
2 changes: 1 addition & 1 deletion dev.docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:

database:
container_name: openelisglobal-database
image: postgres:9.5
image: postgres:14.4
ports:
- "15432:5432"
restart: always
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:

database:
container_name: openelisglobal-database
image: postgres:9.5
image: postgres:14.4
ports:
- "15432:5432"
restart: always
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/openelisglobal/BaseTestConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class BaseTestConfig {

private static final String DB_NAME = "clinlims";

private static PostgreSQLContainer postgreSqlContainer = new PostgreSQLContainer("postgres:9.5");
private static PostgreSQLContainer postgreSqlContainer = new PostgreSQLContainer("postgres:14.4");

@Bean("liquibase")
@Profile("test")
Expand Down
Loading

0 comments on commit 2dac9d4

Please sign in to comment.