Skip to content

Commit ed066d2

Browse files
committed
refactor: Add remove orphans flag
1 parent bcb886b commit ed066d2

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/integration-test-cluster-neo4j-4.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: hoverkraft-tech/[email protected]
2424
with:
2525
compose-file: './docker-compose-neo4j-4.yml'
26-
up-flags: '--build'
26+
up-flags: '--build --remove-orphans'
2727
- name: Test
2828
run: |
2929
docker compose run client composer install

.github/workflows/integration-test-cluster-neo4j-5.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: hoverkraft-tech/[email protected]
2424
with:
2525
compose-file: './docker-compose.yml'
26-
up-flags: '--build'
26+
up-flags: '--build --remove-orphans'
2727
- name: Test
2828
run: |
2929
docker compose run client composer install

.github/workflows/integration-test-single-server.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: hoverkraft-tech/[email protected]
2222
with:
2323
compose-file: './docker-compose-neo4j-4.yml'
24-
up-flags: '--build'
24+
up-flags: '--build --remove-orphans'
2525
- name: Composer install
2626
run: |
2727
docker compose run client composer install

docker-compose.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ services:
5757
networks:
5858
- neo4j
5959
ports:
60-
- "7687:7687"
61-
- "7474:7474"
60+
- "11687:7687"
61+
- "11474:7474"
6262
environment:
6363
<<: *common-env
6464
NEO4j_server_bolt_advertised_address: localhost:11687
@@ -68,9 +68,9 @@ services:
6868
<<: *common-cluster
6969
hostname: server1
7070
ports:
71-
- "11687:7687"
72-
- "11473:7473"
73-
- "11474:7474"
71+
- "7687:7687"
72+
- "7473:7473"
73+
- "7474:7474"
7474
environment:
7575
<<: *common-core-env
7676
NEO4j_server_bolt_advertised_address: localhost:7687

0 commit comments

Comments
 (0)