2dfeb55d4c
Make privnet the default for docker setups along the way and use alpine as the base image because we now need to have sh and gzip. Fix #524.
6 lines
171 B
Bash
Executable file
6 lines
171 B
Bash
Executable file
#!/bin/sh
|
|
if test -f /6000-privnet-blocks.acc.gz; then
|
|
gunzip /6000-privnet-blocks.acc.gz
|
|
/usr/bin/neo-go db restore -i /6000-privnet-blocks.acc
|
|
fi
|
|
/usr/bin/neo-go "$@"
|