16 lines
718 B
Python
Raw Normal View History

2024-12-19 16:02:57 +08:00
nomos_nodes = {
"nomos": {
2024-12-20 18:33:59 +08:00
"image": "nomos/nomos:latest",
2025-01-06 15:41:10 +08:00
"volumes": ["./cl_config:/etc/nomos", "./kzgrs/kzgrs_test_params.bin:/kzgrs_test_params:z"],
2024-12-19 16:02:57 +08:00
"ports": ["3000/udp", "18080/tcp"],
"entrypoint": "/etc/nomos/scripts/run_nomos_node.sh",
},
"nomos_executor": {
2024-12-20 18:33:59 +08:00
"image": "nomos/nomos:latest",
2025-01-06 15:41:10 +08:00
"volumes": ["./cl_config:/etc/nomos", "./kzgrs/kzgrs_test_params.bin:/kzgrs_test_params:z"],
2024-12-19 16:02:57 +08:00
"ports": ["3000/udp", "18080/tcp"],
"entrypoint": "/etc/nomos/scripts/run_nomos_executor.sh",
},
2025-01-06 15:41:10 +08:00
"cfgsync": {"image": "nomos/nomos:latest", "volumes": ["./cl_config:/etc/nomos"], "ports": "", "entrypoint": "/etc/nomos/scripts/run_cfgsync.sh"},
2024-12-19 16:02:57 +08:00
}