works now

This commit is contained in:
Jeffrey Paul 2016-08-18 14:11:25 +02:00
parent 2b961fbd0a
commit 81ff8ad85b
2 changed files with 5 additions and 0 deletions

View File

@ -103,3 +103,4 @@ EXPOSE 2001
RUN mkdir -p /etc/service/steemd
ADD steemd.run /etc/service/steemd/run
RUN chmod +x /etc/service/steemd/run

View File

@ -28,11 +28,15 @@ for NODE in $SEED_NODES ; do
ARGS+=" --seed-node=$NODE"
done
# without --data-dir it uses cwd as datadir(!)
# who knows what else it dumps into current dir
cd $HOME
exec chpst -usteemd \
steemd \
--rpc-endpoint=0.0.0.0:8090 \
--p2p-endpoint=0.0.0.0:2001 \
--data-dir=$HOME \
$ARGS \
$STEEMD_EXTRA_OPTS \
2>&1