Skip to content

Commit bd52e5e

Browse files
authored
Merge pull request #1623 from NASA-AMMOS/refactor/explicitly-add-gateway-envvar
Adds "HASURA_API_URL" to docker-compose
2 parents 8299e6d + 324f708 commit bd52e5e

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

deployment/docker-compose.yml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ services:
66
environment:
77
AUTH_TYPE: none
88
GQL_API_URL: http://localhost:8080/v1/graphql
9+
HASURA_API_URL: http://hasura:8080/
910
HASURA_GRAPHQL_JWT_SECRET: "${HASURA_GRAPHQL_JWT_SECRET}"
1011
LOG_FILE: console
1112
LOG_LEVEL: warn

docker-compose.yml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ services:
77
AUTH_TYPE: none
88
AUTH_URL: https://atb-ocio-12b.jpl.nasa.gov:8443/cam-api
99
GQL_API_URL: http://localhost:8080/v1/graphql
10+
HASURA_API_URL: http://hasura:8080/
1011
HASURA_GRAPHQL_JWT_SECRET: "${HASURA_GRAPHQL_JWT_SECRET}"
1112
LOG_FILE: console
1213
LOG_LEVEL: debug

e2e-tests/docker-compose-many-workers.yml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ services:
66
environment:
77
AUTH_TYPE: none
88
AUTH_URL: https://atb-ocio-12b.jpl.nasa.gov:8443/cam-api
9+
HASURA_API_URL: http://hasura:8080/
910
GQL_API_URL: http://localhost:8080/v1/graphql
1011
HASURA_GRAPHQL_JWT_SECRET: "${HASURA_GRAPHQL_JWT_SECRET}"
1112
LOG_FILE: console

e2e-tests/docker-compose-test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ services:
99
environment:
1010
AUTH_TYPE: none
1111
GQL_API_URL: http://localhost:8080/v1/graphql
12+
HASURA_API_URL: http://hasura:8080/
1213
HASURA_GRAPHQL_JWT_SECRET: "${HASURA_GRAPHQL_JWT_SECRET}"
1314
LOG_FILE: console
1415
LOG_LEVEL: debug

0 commit comments

Comments
 (0)