remove mining shit

This commit is contained in:
lza_menace 2022-09-22 11:42:08 -07:00
parent e1ad904f27
commit 447cb9edaf
24 changed files with 3208 additions and 5543 deletions

View file

@ -0,0 +1,9 @@
FROM golang:bullseye
# Install exporter from Golang source
RUN go install github.com/cirocosta/monero-exporter/cmd/monero-exporter@master
# Install GeoLite database
RUN wget https://github.com/P3TERX/GeoLite.mmdb/raw/download/GeoLite2-City.mmdb -O /geoip.mmdb
ENTRYPOINT [ "monero-exporter", "--geoip-filepath", "/geoip.mmdb" ]