Skip to content

Commit

Permalink
fix: node exporter bug
Browse files Browse the repository at this point in the history
  • Loading branch information
AmirhBrt committed Feb 15, 2024
1 parent 417d2a3 commit 59e2d7f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion broker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN apt-get update && apt-get install wget -y
RUN wget https://github.com/prometheus/node_exporter/releases/download/v1.3.1/node_exporter-1.3.1.linux-amd64.tar.gz
RUN tar xvf node_exporter-1.3.1.linux-amd64.tar.gz
RUN cd node_exporter-1.3.1.linux-amd64
RUN ./node_exporter
RUN bash -c "/app/node_exporter-1.3.1.linux-amd64/node_exporter &"

COPY requirements.txt requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion gateway/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN apt-get update && apt-get install wget -y
RUN wget https://github.com/prometheus/node_exporter/releases/download/v1.3.1/node_exporter-1.3.1.linux-amd64.tar.gz
RUN tar xvf node_exporter-1.3.1.linux-amd64.tar.gz
RUN cd node_exporter-1.3.1.linux-amd64
RUN ./node_exporter
RUN bash -c "/app/node_exporter-1.3.1.linux-amd64/node_exporter &"

COPY requirements.txt requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion zookeeper/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN apt-get update && apt-get install wget -y
RUN wget https://github.com/prometheus/node_exporter/releases/download/v1.3.1/node_exporter-1.3.1.linux-amd64.tar.gz
RUN tar xvf node_exporter-1.3.1.linux-amd64.tar.gz
RUN cd node_exporter-1.3.1.linux-amd64
RUN ./node_exporter
RUN bash -c "/app/node_exporter-1.3.1.linux-amd64/node_exporter &"

COPY requirements.txt requirements.txt

Expand Down

0 comments on commit 59e2d7f

Please sign in to comment.