You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
330 B
Plaintext
9 lines
330 B
Plaintext
2 years ago
|
FROM golang:bullseye
|
||
4 years ago
|
|
||
2 years ago
|
# Install exporter from Golang source
|
||
|
RUN go install github.com/cirocosta/monero-exporter/cmd/monero-exporter@master
|
||
4 years ago
|
|
||
2 years ago
|
# Install GeoLite database
|
||
|
RUN wget https://github.com/P3TERX/GeoLite.mmdb/raw/download/GeoLite2-City.mmdb -O /geoip.mmdb
|
||
4 years ago
|
|
||
2 years ago
|
ENTRYPOINT [ "monero-exporter", "--geoip-filepath", "/geoip.mmdb" ]
|