Skip to content

Commit

Permalink
remove env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
harbu committed Aug 7, 2024
1 parent 3935a53 commit fb4e0f9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ services:
- "40500:40500"
command: npm exec -c entry-point
healthcheck:
test: ["CMD", "curl", "${STREAMR_BASE_URL}:40500"]
test: ["CMD", "curl", "http:/10.200.10.1:40500"]
interval: 1s
timeout: 5s
retries: 10
Expand All @@ -134,7 +134,7 @@ services:
deploy-network-subgraphs-fastchain:
condition: service_completed_successfully
environment:
STREAMR_URL: "${STREAMR_BASE_URL}"
STREAMR_URL: "10.200.10.1"
CASSANDRA_HOST: 10.200.10.1:9042
command: npm exec -c -- streamr-node configs/docker-1.env.json
healthcheck:
Expand All @@ -160,7 +160,7 @@ services:
deploy-network-subgraphs-fastchain:
condition: service_completed_successfully
environment:
STREAMR_URL: "${STREAMR_BASE_URL}"
STREAMR_URL: "10.200.10.1"
command: npm exec -c -- streamr-node configs/docker-2.env.json
healthcheck:
test: ["CMD", "curl", "--fail", "--silent", "--show-error", "--max-time", "9", "http://localhost:8791/info"]
Expand All @@ -185,7 +185,7 @@ services:
deploy-network-subgraphs-fastchain:
condition: service_completed_successfully
environment:
STREAMR_URL: "${STREAMR_BASE_URL}"
STREAMR_URL: "10.200.10.1"
command: npm exec -c -- streamr-node configs/docker-3.env.json
healthcheck:
test: ["CMD", "curl", "--fail", "--silent", "--show-error", "--max-time", "9", "http://localhost:8691/info"]
Expand Down

0 comments on commit fb4e0f9

Please sign in to comment.