2024-10-22 09:36:06 +00:00
|
|
|
#!/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" \
|
2024-10-25 11:56:37 +00:00
|
|
|
CFG_HOST_IDENTIFIER="executor-$(hostname -i)" \
|
2024-10-22 09:36:06 +00:00
|
|
|
LOG_LEVEL="INFO" \
|
|
|
|
RISC0_DEV_MODE=true
|
|
|
|
|
|
|
|
/usr/bin/cfgsync-client && \
|
|
|
|
exec /usr/bin/nomos-executor /config.yaml --with-metrics
|