1
0
mirror of https://github.com/hoellen/dockerfiles.git synced 2025-07-27 19:35:39 +00:00
Files
dockerfiles/pgbouncer/Dockerfile
Wonderfall 338e0a290f alpine 3.6
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"]