diff --git a/full.docker-compose.yml b/full.docker-compose.yml index 4562a5f..809d806 100644 --- a/full.docker-compose.yml +++ b/full.docker-compose.yml @@ -28,7 +28,7 @@ services: command: - -cshared_preload_libraries=timescaledb,pg_stat_statements - -cpg_stat_statements.track=all - image: timescale/timescaledb-ha:pg15-latest + image: timescale/timescaledb-ha:pg15.8-ts2.17.0-all restart: always volumes: - db:/home/postgres/pgdata/data diff --git a/internal/storage/postgres/stats_test.go b/internal/storage/postgres/stats_test.go index 6e9b6f3..9737469 100644 --- a/internal/storage/postgres/stats_test.go +++ b/internal/storage/postgres/stats_test.go @@ -34,7 +34,7 @@ func (s *StatsTestSuite) SetupSuite() { Password: "password", Database: "db_test", Port: 5432, - Image: "timescale/timescaledb-ha:pg15-latest", + Image: "timescale/timescaledb-ha:pg15.8-ts2.17.0-all", }) s.Require().NoError(err) s.psqlContainer = psqlContainer diff --git a/internal/storage/postgres/storage_test.go b/internal/storage/postgres/storage_test.go index fc6fdd6..48d1017 100644 --- a/internal/storage/postgres/storage_test.go +++ b/internal/storage/postgres/storage_test.go @@ -32,7 +32,7 @@ func (s *StorageTestSuite) SetupSuite() { Password: "password", Database: "db_test", Port: 5432, - Image: "timescale/timescaledb-ha:pg15-latest", + Image: "timescale/timescaledb-ha:pg15.8-ts2.17.0-all", }) s.Require().NoError(err) s.psqlContainer = psqlContainer diff --git a/internal/storage/postgres/transaction_test.go b/internal/storage/postgres/transaction_test.go index 1904cca..c8d0392 100644 --- a/internal/storage/postgres/transaction_test.go +++ b/internal/storage/postgres/transaction_test.go @@ -42,7 +42,7 @@ func (s *TransactionTestSuite) SetupSuite() { Password: "password", Database: "db_test", Port: 5432, - Image: "timescale/timescaledb-ha:pg15-latest", + Image: "timescale/timescaledb-ha:pg15.8-ts2.17.0-all", }) s.Require().NoError(err) s.psqlContainer = psqlContainer diff --git a/pkg/indexer/storage/storage_test.go b/pkg/indexer/storage/storage_test.go index 035cec8..0a1d336 100644 --- a/pkg/indexer/storage/storage_test.go +++ b/pkg/indexer/storage/storage_test.go @@ -38,7 +38,7 @@ func (s *ModuleTestSuite) SetupSuite() { Password: "password", Database: "db_test", Port: 5432, - Image: "timescale/timescaledb-ha:pg15-latest", + Image: "timescale/timescaledb-ha:pg15.8-ts2.17.0-all", }) s.Require().NoError(err) s.psqlContainer = psqlContainer