Skip to content

Commit

Permalink
refactor: Add remove orphans flag
Browse files Browse the repository at this point in the history
  • Loading branch information
exaby73 committed Oct 9, 2024
1 parent bcb886b commit ed066d2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-test-cluster-neo4j-4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: hoverkraft-tech/[email protected]
with:
compose-file: './docker-compose-neo4j-4.yml'
up-flags: '--build'
up-flags: '--build --remove-orphans'
- name: Test
run: |
docker compose run client composer install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-test-cluster-neo4j-5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: hoverkraft-tech/[email protected]
with:
compose-file: './docker-compose.yml'
up-flags: '--build'
up-flags: '--build --remove-orphans'
- name: Test
run: |
docker compose run client composer install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-test-single-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: hoverkraft-tech/[email protected]
with:
compose-file: './docker-compose-neo4j-4.yml'
up-flags: '--build'
up-flags: '--build --remove-orphans'
- name: Composer install
run: |
docker compose run client composer install
Expand Down
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ services:
networks:
- neo4j
ports:
- "7687:7687"
- "7474:7474"
- "11687:7687"
- "11474:7474"
environment:
<<: *common-env
NEO4j_server_bolt_advertised_address: localhost:11687
Expand All @@ -68,9 +68,9 @@ services:
<<: *common-cluster
hostname: server1
ports:
- "11687:7687"
- "11473:7473"
- "11474:7474"
- "7687:7687"
- "7473:7473"
- "7474:7474"
environment:
<<: *common-core-env
NEO4j_server_bolt_advertised_address: localhost:7687
Expand Down

0 comments on commit ed066d2

Please sign in to comment.