10 lines
255 B
Bash
Executable File
10 lines
255 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.
|
|
|
|
echo $INIT_NODES | tr ' ' '\n' > /detee_challenge_nodes
|
|
touch /detee_challenge_node_history
|
|
|
|
/hacker-challenge
|