Skip to content

Commit

Permalink
simplified connector listen addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
transistive committed Dec 1, 2021
1 parent 7998555 commit 7bcbf97
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/full-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ jobs:
NEO4J_causal__clustering_discovery__listen__address: 0.0.0.0:5000
NEO4J_causal__clustering_transaction__listen__address: 0.0.0.0:6000
NEO4J_causal__clustering_raft__listen__address: 0.0.0.0:7000
NEO4J_dbms_connector_bolt_advertised__address: localhost:17687
NEO4J_dbms_connector_http_advertised__address: localhost:17474
NEO4J_dbms_connector_http_listen__address: 0.0.0.0:7475
NEO4J_dbms_connector_bolt_listen__address: 0.0.0.0:7688
options: >-
--health-cmd "wget http://localhost:7474 || exit 1"
ports:
- 17687:7687
- 17474:7474
- 7688:7688
- 7475:7475
core2:
image: neo4j:4.3-enterprise
env:
Expand All @@ -78,11 +78,11 @@ jobs:
NEO4J_causal__clustering_discovery__listen__address: 0.0.0.0:5000
NEO4J_causal__clustering_transaction__listen__address: 0.0.0.0:6000
NEO4J_causal__clustering_raft__listen__address: 0.0.0.0:7000
NEO4J_dbms_connector_bolt_advertised__address: localhost:27687
NEO4J_dbms_connector_http_advertised__address: localhost:27474
NEO4J_dbms_connector_http_listen__address: 0.0.0.0:7476
NEO4J_dbms_connector_bolt_listen__address: 0.0.0.0:7689
ports:
- 27687:7687
- 27474:7474
- 7689:7689
- 7476:7476

core3:
image: neo4j:4.3-enterprise
Expand All @@ -98,13 +98,13 @@ jobs:
NEO4J_causal__clustering_discovery__listen__address: 0.0.0.0:5000
NEO4J_causal__clustering_transaction__listen__address: 0.0.0.0:6000
NEO4J_causal__clustering_raft__listen__address: 0.0.0.0:7000
NEO4J_dbms_connector_bolt_advertised__address: localhost:37687
NEO4J_dbms_connector_http_advertised__address: localhost:37474
NEO4J_dbms_connector_http_listen__address: 0.0.0.0:7477
NEO4J_dbms_connector_bolt_listen__address: 0.0.0.0:7690
options: >-
--health-cmd "wget http://localhost:7474 || exit 1"
ports:
- 37687:7687
- 37474:7474
- 7690:7690
- 7477:7477

readreplica1:
image: neo4j:4.3-enterprise
Expand All @@ -120,11 +120,11 @@ jobs:
NEO4J_causal__clustering_discovery__listen__address: 0.0.0.0:5000
NEO4J_causal__clustering_transaction__listen__address: 0.0.0.0:6000
NEO4J_causal__clustering_raft__listen__address: 0.0.0.0:7000
NEO4J_dbms_connector_bolt_advertised__address: localhost:47687
NEO4J_dbms_connector_http_advertised__address: localhost:47474
NEO4J_dbms_connector_http_listen__address: 0.0.0.0:7478
NEO4J_dbms_connector_bolt_listen__address: 0.0.0.0:7691
options: >-
--health-cmd "wget http://localhost:7474 || exit 1"
ports:
- 47687:7687
- 47474:7474
- 7691:7691
- 7478:7478

0 comments on commit 7bcbf97

Please sign in to comment.