From e030807acb7b7dd20439b33e8a9f10e3af8212eb Mon Sep 17 00:00:00 2001 From: "R. Miles McCain" Date: Thu, 18 Jun 2020 16:46:39 +0000 Subject: [PATCH] Fix GeoIP2 license keys --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c6cb7d3..db6d3df 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,8 +10,8 @@ ARG GF_GID="500" RUN apk update && \ apk add gettext curl bash && \ # URL from https://github.com/shlinkio/shlink/issues/596 :) - curl "https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-ASN&license_key=G4Lm0C60yJsnkdPi&suffix=tar.gz" | tar -xvz -C /tmp && \ - curl "https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-City&license_key=G4Lm0C60yJsnkdPi&suffix=tar.gz" | tar -xvz -C /tmp && \ + curl "https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-ASN&license_key=kKG1ebhL3iWVd0iv&suffix=tar.gz" | tar -xvz -C /tmp && \ + curl "https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-City&license_key=kKG1ebhL3iWVd0iv&suffix=tar.gz" | tar -xvz -C /tmp && \ mv /tmp/GeoLite2*/*.mmdb /etc && \ apk del curl && \ apk add --no-cache postgresql-libs && \