mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-08 22:08:00 +00:00
Merge pull request #358 from djmaze/fix-rpcallowip-for-docker
Fix rpcallowip to use the real bridge IP in the Docker container
This commit is contained in:
commit
59a1b66b3f
@ -21,5 +21,5 @@ ENV HOME /root
|
||||
VOLUME /root/.twister
|
||||
|
||||
# Run twisterd by default
|
||||
ENTRYPOINT ["/twister-core/twisterd", "-rpcuser=user", "-rpcpassword=pwd", "-rpcallowip=172.17.42.1", "-htmldir=/twister-html", "-printtoconsole", "-port=28333"]
|
||||
ENTRYPOINT ["/twister-core/docker-entrypoint"]
|
||||
EXPOSE 28332
|
||||
|
6
docker-entrypoint.sh
Executable file
6
docker-entrypoint.sh
Executable file
@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
BRIDGE_IP=$(ip ro get 8.8.8.8 | grep -oP '(?<=via )([\d\.]+)')
|
||||
|
||||
exec /twister-core/twisterd -rpcuser=user -rpcpassword=pwd -rpcallowip=${BRIDGE_IP} -htmldir=/twister-html -printtoconsole -port=28333 $*
|
Loading…
Reference in New Issue
Block a user