From cd53dbf4a51169b6c4782fedd46e7e238bf730a5 Mon Sep 17 00:00:00 2001 From: Teddysun Date: Tue, 31 Dec 2019 18:19:31 +0900 Subject: [PATCH] Fixed issue #53 --- docker/v2ray/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/v2ray/Dockerfile b/docker/v2ray/Dockerfile index c745f7d..ec9ab30 100644 --- a/docker/v2ray/Dockerfile +++ b/docker/v2ray/Dockerfile @@ -24,7 +24,7 @@ RUN set -ex \ && GEOSITE_TAG=$(wget -qO- https://api.github.com/repos/v2ray/domain-list-community/releases/latest | grep 'tag_name' | sed -E 's/.*"([^"]+)".*/\1/') \ && wget -O /go/bin/geosite.dat https://github.com/v2ray/domain-list-community/releases/download/${GEOSITE_TAG}/dlc.dat \ && cd /tmp \ - && wget -O GeoLite2-Country-CSV.zip http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country-CSV.zip \ + && wget -O GeoLite2-Country-CSV.zip https://dl.lamp.sh/files/GeoLite2-Country-CSV.zip \ && unzip GeoLite2-Country-CSV.zip \ && rm -fv GeoLite2-Country-CSV.zip \ && mv GeoLite2* geoip \