2023-10-16 10:59:05 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2024-10-02 11:26:39 +00:00
|
|
|
export CFG_FILE_PATH="/config.yaml" \
|
|
|
|
CFG_SERVER_ADDR="http://cfgsync:4400" \
|
|
|
|
CFG_HOST_IP=$(hostname -i) \
|
|
|
|
RISC0_DEV_MODE=true
|
2023-10-16 10:59:05 +00:00
|
|
|
|
2024-10-02 11:26:39 +00:00
|
|
|
/usr/bin/cfgsync-client && \
|
|
|
|
exec /usr/bin/nomos-node /config.yaml --with-metrics --log-backend gelf --log-addr graylog:12201
|