File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ RUN ${PACKAGER} -y update && ${PACKAGER} -y install --nodocs \
6262 busybox \
6363 dpkg \
6464 jq \
65+ rsync \
6566 && ${PACKAGER} -y clean all;
6667
6768
@@ -217,7 +218,7 @@ RUN mkdir /package && cd /package && wget http://smarden.org/runit/runit-2.1.2.
217218RUN ln -s /usr/local/bin/dumb-init /usr/bin/dumb-init && ln -s /usr/local/bin/runsvdir /usr/bin/runsvdir
218219
219220# Clean Up git-repos
220- RUN rm -rf /pgextwlist /pg_stat_kcache /package / oracle_fdw /pgnodemx \
221+ RUN rm -rf /pgextwlist /pg_stat_kcache /oracle_fdw /pgnodemx \
221222 && rm /etc/pgbackrest.conf && rm -rf /var/spool/pgbackrest;
222223
223224# Clean Up Packages
@@ -234,7 +235,7 @@ ARG TIMESCALEDB
234235
235236EXPOSE 5432 8008 8080
236237ENV LC_ALL=en_US.utf-8 \
237- PATH=$PATH:/usr/pgsql-$PGVERSION/bin \
238+ PATH=$PATH:/usr/pgsql-$PGVERSION/bin \
238239 PGHOME=/home/postgres \
239240 RW_DIR=/run \
240241 TIMESCALEDB=$TIMESCALEDB \
Original file line number Diff line number Diff line change 11
22# User
3+ CREATE ROLE postgres_exporter with password ' password' ;
4+ ALTER ROLE postgres_exporter login;
35
46GRANT pg_monitor TO postgres_exporter;
57GRANT SELECT ON TABLE pg_authid TO postgres_exporter;
68
7- # Structure
9+ // Structure
810
911CREATE SCHEMA exporter ;
1012
You can’t perform that action at this time.
0 commit comments