strelaypoolsrv-entrypoint.sh 226 B

12345678910
  1. #!/bin/sh
  2. set -eu
  3. if [ "$MAXMIND_KEY" != "" ] ; then
  4. curl "https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-City&license_key=${MAXMIND_KEY}&suffix=tar.gz" \
  5. | tar --strip-components 1 -zxv
  6. fi
  7. exec "$@"