File tree 5 files changed +6
-6
lines changed
5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 78
78
timeout-minutes : 300
79
79
services :
80
80
postgres :
81
- image : postgres:11
81
+ image : postgres:16.4
82
82
env :
83
83
POSTGRES_USER : postgres
84
84
POSTGRES_PASSWORD : postgres
Original file line number Diff line number Diff line change @@ -269,7 +269,7 @@ dependencies {
269
269
testImplementation ' org.springframework.boot:spring-boot-starter-test'
270
270
testImplementation ' io.zonky.test:embedded-database-spring-test:2.6.0'
271
271
testImplementation ' io.zonky.test:embedded-postgres:2.1.0'
272
- implementation enforcedPlatform(' io.zonky.test.postgres:embedded-postgres-binaries-bom:12.8 .0' )
272
+ implementation enforcedPlatform(' io.zonky.test.postgres:embedded-postgres-binaries-bom:16.4 .0' )
273
273
274
274
generatedCompile ' org.springframework.boot:spring-boot-starter-web'
275
275
// boot-starter-validation required for jakarta.validation.Valid references, @Valid tags
Original file line number Diff line number Diff line change @@ -254,7 +254,7 @@ export HOST=localhost
254
254
* Ensure docker is running
255
255
* Auth as your broadinstitute.org to pull from Google Secrets Manager ` gcloud auth login <you>@broadinstitute.org `
256
256
* Run ` ./scripts/run-db start ` to start the DB in a docker container
257
- * Run ` ./scripts/run local ` to run TDR locally or ` ./scripts/run docker ` to run TDR in a docker container
257
+ * Run ` ./scripts/run start_local ` to run TDR locally or ` ./scripts/run start_docker ` to run TDR in a docker container
258
258
* To Build the code and run the unit tests:
259
259
260
260
```
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ services:
27
27
- /tmp/jade-dev-account.json:/tmp/jade-dev-account.json
28
28
29
29
database :
30
- image : postgres:14
30
+ image : postgres:16.4
31
31
environment :
32
32
- POSTGRES_PASSWORD=drpasswd
33
33
ports :
Original file line number Diff line number Diff line change 2
2
CREATE USER drmanager WITH PASSWORD ' drpasswd' ;
3
3
CREATE DATABASE datarepo ;
4
4
GRANT ALL PRIVILEGES ON DATABASE datarepo to drmanager;
5
+ ALTER DATABASE datarepo OWNER to drmanager;
5
6
CREATE DATABASE stairway ;
6
7
GRANT ALL PRIVILEGES ON DATABASE stairway to drmanager;
7
- \c datarepo
8
- CREATE EXTENSION IF NOT EXISTS pgcrypto;
8
+ ALTER DATABASE stairway OWNER to drmanager;
You can’t perform that action at this time.
0 commit comments