dockerfiles/pgbouncer/Dockerfile

17 lines
215 B
Docker
Raw Normal View History

2017-05-27 01:46:23 +02:00
FROM alpine:3.6
2017-04-20 03:35:28 +02:00
ENV UID=991 GID=991
2017-05-27 01:46:23 +02:00
RUN apk -U --no-cache add \
pgbouncer \
tini \
su-exec
2017-04-20 03:35:28 +02:00
COPY run.sh /usr/local/bin/run.sh
RUN chmod +x /usr/local/bin/run.sh
2017-05-27 01:46:23 +02:00
VOLUME /etc/pgbouncer
2017-04-20 03:35:28 +02:00
2017-05-27 01:46:23 +02:00
CMD ["run.sh"]