1
0
mirror of https://github.com/hoellen/dockerfiles.git synced 2025-05-14 08:07:47 +00:00
2017-05-27 01:46:23 +02:00

17 lines
215 B
Docker

FROM alpine:3.6
ENV UID=991 GID=991
RUN apk -U --no-cache add \
pgbouncer \
tini \
su-exec
COPY run.sh /usr/local/bin/run.sh
RUN chmod +x /usr/local/bin/run.sh
VOLUME /etc/pgbouncer
CMD ["run.sh"]