Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion influxdb/1.5/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ RUN set -ex && \
chmod +x /usr/src/influxdb-*/* && \
cp -a /usr/src/influxdb-*/* /usr/bin/ && \
rm -rf *.tar.gz* /usr/src /root/.gnupg && \
apk del .build-deps
apk del .build-deps && \
addgroup -g 1000 influxdb && \
adduser -G influxdb -u 1000 -S -h /var/lib/influxdb influxdb
COPY influxdb.conf /etc/influxdb/influxdb.conf

EXPOSE 8086
Expand Down
4 changes: 3 additions & 1 deletion influxdb/1.6/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ RUN set -ex && \
chmod +x /usr/src/influxdb-*/* && \
cp -a /usr/src/influxdb-*/* /usr/bin/ && \
rm -rf *.tar.gz* /usr/src /root/.gnupg && \
apk del .build-deps
apk del .build-deps && \
addgroup -g 1000 influxdb && \
adduser -G influxdb -u 1000 -S -h /var/lib/influxdb influxdb
COPY influxdb.conf /etc/influxdb/influxdb.conf

EXPOSE 8086
Expand Down
4 changes: 3 additions & 1 deletion influxdb/1.7/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ RUN set -ex && \
chmod +x /usr/src/influxdb-*/* && \
cp -a /usr/src/influxdb-*/* /usr/bin/ && \
rm -rf *.tar.gz* /usr/src /root/.gnupg && \
apk del .build-deps
apk del .build-deps && \
addgroup -g 1000 influxdb && \
adduser -G influxdb -u 1000 -S -h /var/lib/influxdb influxdb
COPY influxdb.conf /etc/influxdb/influxdb.conf

EXPOSE 8086
Expand Down
4 changes: 3 additions & 1 deletion influxdb/nightly/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ RUN set -ex && \
chmod +x /usr/src/influxdb-*/* && \
cp -a /usr/src/influxdb-*/* /usr/bin/ && \
rm -rf *.tar.gz* /usr/src /root/.gnupg && \
apk del .build-deps
apk del .build-deps && \
addgroup -g 1000 influxdb && \
adduser -G influxdb -u 1000 -S -h /var/lib/influxdb influxdb
COPY influxdb.conf /etc/influxdb/influxdb.conf

EXPOSE 8083 8086
Expand Down