entrypoint.sh 230 B

1234567891011
  1. #!/bin/bash
  2. echo "starting nockchain with $@"
  3. export RUST_BACKTRACE=${RUST_BACKTRACE:-1}
  4. export RUST_LOG=${RUST_LOG:-info}
  5. export MINIMAL_LOG_FORMAT=${MINIMAL_LOG_FORMAT:-false}
  6. rm -f nockchain.sock
  7. exec ../bin/nockchain "$@"