Skip to content

Commit

Permalink
[fix] downgrade postgres version (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
dojinyou authored Nov 10, 2023
1 parent 375e5aa commit a568cc8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.8'

services:
db:
image: postgres:16.0-alpine
image: postgres:15.4-alpine
container_name: rdb
volumes:
- postgres:/var/lib/postgresql/data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ abstract class AbstractApplicationTest {
companion object {
@Container
@ServiceConnection
val POSTGRESQL_CONTAINER = PostgreSQLContainer("postgres:16.0-alpine")
val POSTGRESQL_CONTAINER = PostgreSQLContainer("postgres:15.4-alpine")
.withUsername("test-user")
.withPassword("test-password")
.withDatabaseName("test_db")!!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ abstract class AbstractDataTest {
companion object {
@Container
@ServiceConnection
val POSTGRESQL_CONTAINER = PostgreSQLContainer("postgres:16.0-alpine")
val POSTGRESQL_CONTAINER = PostgreSQLContainer("postgres:15.4-alpine")
.withUsername("test-user")
.withPassword("test-password")
.withDatabaseName("test_db")!!
Expand Down

0 comments on commit a568cc8

Please sign in to comment.