You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docker/couchdb/Dockerfile
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,4 @@
1
+
FROM cmssw/filebeat:latest as filebeat
1
2
FROM couchdb:3.2.2
2
3
MAINTAINER Valentin Kuznetsov vkuznet@gmail.com
3
4
@@ -24,9 +25,10 @@ RUN mkdir -p $WDIR
24
25
WORKDIR ${WDIR}
25
26
26
27
# get binary build of couchdb exporter
27
-
RUN curl -ksLO https://github.com/gesellix/couchdb-prometheus-exporter/releases/download/v27.0.0/couchdb-prometheus-exporter_27.0.0_Linux_x86_64.tar.gz
28
-
RUN tar xfz couchdb-prometheus-exporter_27.0.0_Linux_x86_64.tar.gz
29
-
RUN rm couchdb-prometheus-exporter_27.0.0_Linux_x86_64.tar.gz LICENSE README*.md
28
+
ARG VER=30.14.0
29
+
RUN curl -ksLO https://github.com/gesellix/couchdb-prometheus-exporter/releases/download/v${VER}/couchdb-prometheus-exporter_${VER}_Linux_x86_64.tar.gz
30
+
RUN tar xfz couchdb-prometheus-exporter_${VER}_Linux_x86_64.tar.gz
31
+
RUN rm couchdb-prometheus-exporter_${VER}_Linux_x86_64.tar.gz LICENSE README*.md
0 commit comments