mirror of
https://github.com/hoellen/dockerfiles.git
synced 2025-08-01 13:55:41 +00:00
boring-nginx
matomo
nextcloud
nginx-php
privatebin
searx
unmaintained
boinc
cowrie
cryptpad
freshrss
ghost
isso
kippo-graph
libresonic
lutim
lychee
mastodon
mediawiki
nginx
parsoid
pgbouncer
Dockerfile
README.md
run.sh
rainloop
reverse
rtorrent-flood
rutorrent
tor
LICENSE
README.md
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"]
|