mirror of
https://github.com/prometheus-community/postgres_exporter
synced 2025-02-02 03:21:45 +00:00
8 lines
106 B
Docker
8 lines
106 B
Docker
|
FROM scratch
|
||
|
|
||
|
COPY postgres_exporter /postgres_exporter
|
||
|
|
||
|
EXPOSE 9113
|
||
|
|
||
|
ENTRYPOINT [ "/postgres_exporter" ]
|