mirror of
https://github.com/hoellen/dockerfiles.git
synced 2025-04-19 20:09:16 +00:00
17 lines
215 B
Docker
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"]
|