mirror of
https://github.com/logos-co/nomos-e2e-tests.git
synced 2025-02-24 12:18:12 +00:00
15 lines
358 B
Bash
15 lines
358 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
export CFG_FILE_PATH="/config.yaml" \
|
||
|
CFG_SERVER_ADDR="http://cfgsync:4400" \
|
||
|
CFG_HOST_IP=$(hostname -i) \
|
||
|
CFG_HOST_KIND="executor" \
|
||
|
CFG_HOST_IDENTIFIER="executor-$(hostname -i)" \
|
||
|
LOG_LEVEL="INFO" \
|
||
|
RISC0_DEV_MODE=true
|
||
|
|
||
|
/usr/bin/cfgsync-client && \
|
||
|
exec /usr/bin/nomos-executor /config.yaml
|