13 lines
318 B
Bash
Executable File
13 lines
318 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This script start the hacker challenge from within the docker container.
|
|
# It's only purpose is to help bootstrap a test network.
|
|
|
|
if [ -z "${INIT_NODES}" ]; then
|
|
echo "The INIT_NODES environment variable is not set."
|
|
else
|
|
echo $INIT_NODES | tr ' ' '\n' > /detee_challenge_nodes
|
|
fi
|
|
|
|
/hacker-challenge
|