-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move with_conn to pg client, catch exit message if trap_exit in set t…
…o true (#62) * Antidote sync mode is set to "true", that was previously causing issues for exunit tests. * Make vaxine test more explicit to detect missconfiguration when concurent txs are aborted * Add compose-mounts docker-compose file to ease dealing with Vaxine volume
- Loading branch information
define-null
authored
Nov 8, 2022
1 parent
cb40577
commit c1393ce
Showing
7 changed files
with
93 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Run using `docker-compose -f databases.yaml up`. | ||
version: '3.1' | ||
|
||
services: | ||
vaxine: | ||
extends: | ||
file: ./compose.yaml | ||
service: vaxine | ||
environment: | ||
NODE_NAME: "vaxine@vaxine_1" | ||
UID: ${UID} | ||
GID: ${GID} | ||
volumes: | ||
- /etc/group:/etc/group:ro | ||
- /etc/passwd:/etc/passwd:ro | ||
- /etc/shadow:/etc/shadow:ro | ||
- ./_tmp_vaxine_data:/vaxine-data | ||
|
||
db_a: | ||
extends: | ||
file: ./compose.yaml | ||
service: db_a | ||
|
||
db_b: | ||
extends: | ||
file: ./compose.yaml | ||
service: db_b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters