前提是docker已安装
一:执行命令:
docker run --env-file /usr/local/etc/GeoIP.conf -v /usr/local/GeoIP2:/usr/share/GeoIP ghcr.io/maxmind/geoipupdate
/usr/local/etc/GeoIP.conf :本地配置的账号,秘钥
GEOIPUPDATE_ACCOUNT_ID=xxxx
GEOIPUPDATE_LICENSE_KEY=xxxxx
GEOIPUPDATE_EDITION_IDS=GeoLite2-City
GEOIPUPDATE_EDITION_IDS 有3个GeoLite2-ASN GeoLite2-City GeoLite2-Country
由于我只需要GeoLite2-City ,我只下载这一个就够了。
/usr/local/GeoIP2:想要存入的数据地址
二:定时执行geoipupdate
添加定时任务
cd /etc/cron.daily
vi mytasks
# top of crontab
MAILTO=xxxxx@email.com
0 15:58 * * 4 /usr/bin/entry.sh
# end of crontab
保存后可以正常定时下载
docker compose 运行
创建docker-compose.xml
version: '3'
services:
geoipupdate:
container_name: geoipupdate
image: ghcr.io/maxmind/geoipupdate
restart: on-failure
environment:
- GEOIPUPDATE_ACCOUNT_ID=xxxx
- GEOIPUPDATE_LICENSE_KEY=xxxxxxx
- 'GEOIPUPDATE_EDITION_IDS=GeoLite2-ASN GeoLite2-City GeoLite2-Country'
- GEOIPUPDATE_FREQUENCY=72
- PUID=1000
- PGID=1000
- TZ=Europe/London
- CRON_SCHEDULE=0 17:09 * * *
networks:
- geoipupdate
volumes:
- '/usr/local/GeoIP2:/usr/share/GeoIP'
networks:
geoipupdate:
还行命令:docker-compose up -d
定时任务:
crontab -e
top of crontab
49 17 * * 6,4 /usr/bin/docker-compose -f /usr/local/GeoIP2/docker-compose.yml up -d
# end of crontab