File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ readonly MARQUEZ_ADMIN_PORT=8081
23
23
readonly MARQUEZ_URL=" http://${MARQUEZ_HOST} :${MARQUEZ_ADMIN_PORT} "
24
24
readonly MARQUEZ_DB=" marquez-db"
25
25
readonly POSTGRES_PORT=5432
26
+ readonly API_PORT=5000
27
+ readonly API_ADMIN_PORT=5001
26
28
27
29
readonly METADATA_FILE=" api/load-testing/metadata.json"
28
30
readonly METADATA_STATS_QUERY=$( cat << -END
Original file line number Diff line number Diff line change @@ -175,6 +175,8 @@ jobs:
175
175
- run : ./.circleci/db-migration.sh
176
176
environment :
177
177
- POSTGRES_PORT=5432
178
+ - API_PORT=5000
179
+ - API_ADMIN_PORT=5001
178
180
179
181
publish-snapshot :
180
182
working_directory : ~/marquez
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ services:
7
7
- MARQUEZ_PORT=${API_PORT}
8
8
- MARQUEZ_ADMIN_PORT=${API_ADMIN_PORT}
9
9
ports :
10
- - ${API_PORT}:${API_PORT}
11
- - ${API_ADMIN_PORT}:${API_ADMIN_PORT}
10
+ - " ${API_PORT}:${API_PORT}"
11
+ - " ${API_ADMIN_PORT}:${API_ADMIN_PORT}"
12
12
volumes :
13
13
- data:/opt/marquez
14
14
links :
@@ -25,7 +25,7 @@ services:
25
25
image : postgres:14
26
26
container_name : marquez-db
27
27
ports :
28
- - ${POSTGRES_PORT}:${POSTGRES_PORT}
28
+ - " ${POSTGRES_PORT}:${POSTGRES_PORT}"
29
29
environment :
30
30
- POSTGRES_USER=postgres
31
31
- POSTGRES_PASSWORD=password
You can’t perform that action at this time.
0 commit comments