mirror of
https://github.com/casjaysdevdocker/ifconfig
synced 2025-09-18 03:57:52 -04:00
🗃️ Committing everything that changed 🗃️
Dockerfile rootfs/usr/local/bin/echoip rootfs/usr/local/etc/docker/init.d/zz-echoip.sh
This commit is contained in:
4
rootfs/usr/local/bin/echoip
Executable file
4
rootfs/usr/local/bin/echoip
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env sh
|
||||
[ -n "$SERVICE_PORT" ] || SERVICE_PORT="80"
|
||||
[ -n "$WORK_DIR" ] || WORK_DIR="/opt/echoip"
|
||||
/opt/echoip/echoip -r -s -p -l :$SERVICE_PORT -H X-Real-IP -H x-forwarded-for -t $WORK_DIR/html -a $WORK_DIR/geoip/GeoLite2-ASN.mmdb -c $WORK_DIR/geoip/GeoLite2-City.mmdb -f $WORK_DIR/geoip/GeoLite2-Country.mmdb
|
@@ -119,10 +119,9 @@ SERVICE_UID="0" # set the user id
|
||||
SERVICE_GID="0" # set the group id
|
||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
# execute command variables - keep single quotes variables will be expanded later
|
||||
EXEC_CMD_BIN='echoip' # command to execute
|
||||
EXEC_CMD_ARGS='-r -s -p -l :$SERVICE_PORT -H X-Real-IP -H x-forwarded-for ' # command arguments
|
||||
EXEC_CMD_ARGS+='-t $WORK_DIR/html -a $WORK_DIR/geoip/GeoLite2-ASN.mmdb -c $WORK_DIR/geoip/GeoLite2-City.mmdb -f $WORK_DIR/geoip/GeoLite2-Country.mmdb ' # command arguments
|
||||
EXEC_PRE_SCRIPT='sleep 60' # execute script before
|
||||
EXEC_CMD_BIN='echoip' # command to execute
|
||||
EXEC_CMD_ARGS='' # command arguments
|
||||
EXEC_PRE_SCRIPT='sleep 60' # execute script before
|
||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
# Is this service a web server
|
||||
IS_WEB_SERVER="no"
|
||||
|
Reference in New Issue
Block a user