mirror of
https://github.com/logos-blockchain/logos-blockchain-e2e-tests.git
synced 2026-01-02 21:23:07 +00:00
16 lines
698 B
Python
16 lines
698 B
Python
|
|
nomos_nodes = {
|
||
|
|
"nomos": {
|
||
|
|
"image": "nomos:latest",
|
||
|
|
"volumes": ["./testnet:/etc/nomos", "./tests/kzgrs/kzgrs_test_params:/kzgrs_test_params:z"],
|
||
|
|
"ports": ["3000/udp", "18080/tcp"],
|
||
|
|
"entrypoint": "/etc/nomos/scripts/run_nomos_node.sh",
|
||
|
|
},
|
||
|
|
"nomos_executor": {
|
||
|
|
"image": "nomos:latest",
|
||
|
|
"volumes": ["./testnet:/etc/nomos", "./tests/kzgrs/kzgrs_test_params:/kzgrs_test_params:z"],
|
||
|
|
"ports": ["3000/udp", "18080/tcp"],
|
||
|
|
"entrypoint": "/etc/nomos/scripts/run_nomos_executor.sh",
|
||
|
|
},
|
||
|
|
"cfgsync": {"image": "nomos:latest", "volumes": ["./testnet:/etc/nomos"], "ports": "", "entrypoint": "/etc/nomos/scripts/run_cfgsync.sh"},
|
||
|
|
}
|