Benutzt in Nginx Proxy Manager Graf container
https://dev.maxmind.com/geoip/updating-databases?lang=en
https://hub.docker.com/r/maxmindinc/geoipupdate
version: '3'
services:
geoipupdate:
image: maxmindinc/geoipupdate
environment:
- GEOIPUPDATE_ACCOUNT_ID=your Account ID
- GEOIPUPDATE_LICENSE_KEY=your Key
- GEOIPUPDATE_EDITION_IDS=GeoLite2-City
- GEOIPUPDATE_FREQUENCY=24
volumes:
- <database directory>:/usr/share/GeoIP
GEOIPUPDATE_EDITION_IDS
- List of space-separated database edition IDs. Edition IDs may consist of letters, digits, and dashes. For example, GeoLite2-City
would download the GeoIP2 City database (GeoLite2-City
)GEOIPUPDATE_FREQUENCY
- The number of hours between geoipupdate
runs. If this is not set or is set to 0
, geoipupdate
will run once and exit.