2022-06-02 13:19:11 -04:00
|
|
|
FROM prom/node-exporter:latest
|
|
|
|
|
2022-06-02 15:15:59 -04:00
|
|
|
ENV NODE_ID=none
|
2022-06-02 15:09:23 -04:00
|
|
|
USER root
|
2022-06-02 13:19:11 -04:00
|
|
|
COPY entrypoint.sh /etc/node-exporter/
|
2022-08-06 14:32:46 -04:00
|
|
|
RUN chmod +x /etc/node-exporter/entrypoint.sh
|
2022-06-02 15:15:59 -04:00
|
|
|
ENTRYPOINT ["/etc/node-exporter/entrypoint.sh"]
|
2022-06-02 15:09:23 -04:00
|
|
|
CMD ["/bin/node_exporter"]
|