File tree Expand file tree Collapse file tree 5 files changed +12
-11
lines changed Expand file tree Collapse file tree 5 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ jobs:
187187 name : Create Test Database
188188 run : |
189189 docker compose exec -T \
190- store-pgsql \
190+ store-pgsql17 \
191191 psql -U postgres -c "create database test_db"
192192 -
193193 name : Backend Tests
@@ -257,7 +257,7 @@ jobs:
257257 name : Create Test Database
258258 run : |
259259 docker compose exec -T \
260- compose_pgsql \
260+ compose_pgsql17 \
261261 psql -U postgres -c "create database test_db"
262262 -
263263 name : Backend Tests
@@ -348,7 +348,7 @@ jobs:
348348 name : Create Test Database
349349 run : |
350350 docker compose exec -T \
351- compose_pgsql \
351+ compose_pgsql17 \
352352 psql -U postgres -c "create database test_db"
353353 -
354354 name : Frontend Jest Unit Tests
@@ -457,15 +457,15 @@ jobs:
457457 cd compose
458458
459459 docker compose exec -T \
460- compose_pgsql \
460+ compose_pgsql17 \
461461 psql -U postgres -c "create database test_db"
462462 -
463463 name : Create Store Database
464464 run : |
465465 cd store
466466
467467 docker compose exec -T \
468- store-pgsql \
468+ store-pgsql17 \
469469 psql -U postgres -c "create database test_db"
470470 -
471471 name : Initialize Compose Database
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ APP_SETTINGS=neurosynth_compose.config.DevelopmentConfig
22FLASK_APP = manage
33FILE_DIR = /tmp
44COMPOSE_CONVERT_WINDOWS_PATHS = 1
5- POSTGRES_HOST = compose_pgsql
5+ POSTGRES_HOST = compose_pgsql17
6+ POSTGRES_DB = compose
67POSTGRES_PASSWORD = example
78BEARERINFO_FUNC = neurosynth_compose.resources.auth.decode_token
89APIKEYINFO_FUNC = neurosynth_compose.resources.auth.verify_key
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ services:
77 dockerfile : ./Dockerfile
88 context : ./backend
99 depends_on :
10- compose_pgsql :
10+ compose_pgsql17 :
1111 condition : service_healthy
1212 compose_worker :
1313 condition : service_started
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FLASK_APP=manage
33ACE_DIR = /media
44FILE_DIR = /tmp
55COMPOSE_CONVERT_WINDOWS_PATHS = 1
6- POSTGRES_HOST = store-pgsql
6+ POSTGRES_HOST = store-pgsql17
77POSTGRES_USER = postgres
88POSTGRES_PASSWORD = example
99POSTGRES_DB = neurostore
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ services:
77 context : ./backend
88 dockerfile : ./Dockerfile
99 depends_on :
10- store-pgsql :
10+ store-pgsql17 :
1111 condition : service_healthy
1212 store_redis :
1313 condition : service_healthy
@@ -98,7 +98,7 @@ services:
9898 DATABASE_URL : " postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:5432/${POSTGRES_DB}"
9999 RAILS_RELATIVE_URL_ROOT : " /pghero"
100100 depends_on :
101- store-pgsql :
101+ store-pgsql17 :
102102 condition : service_healthy
103103
104104 grafana :
@@ -118,7 +118,7 @@ services:
118118 - grafana_data:/var/lib/grafana
119119 - ./grafana/provisioning/datasources:/etc/grafana/provisioning/datasources
120120 depends_on :
121- store-pgsql :
121+ store-pgsql17 :
122122 condition : service_healthy
123123 networks :
124124 - default
You can’t perform that action at this time.
0 commit comments