1
0
mirror of https://github.com/hoellen/dockerfiles.git synced 2025-08-01 22:05:40 +00:00
Files
boring-nginx
cowrie
cryptpad
freshrss
ghost
isso
kippo-graph
libresonic
lychee
mastodon
mediawiki
nextcloud
nginx-php
parsoid
pgbouncer
Dockerfile
README.md
run.sh
piwik
privatebin
rtorrent-flood
searx
tor
unmaintained
LICENSE
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"]