pgweb/Dockerfile

17 lines
510 B
Docker
Raw Permalink Normal View History

2017-08-09 23:11:30 -05:00
FROM alpine:3.6
MAINTAINER Dan Sosedoff <dan.sosedoff@gmail.com>
2014-10-28 19:02:27 +11:00
2017-12-07 23:06:28 -06:00
ENV PGWEB_VERSION 0.9.11
2014-10-28 19:02:27 +11:00
RUN \
apk update && \
2017-08-09 23:11:30 -05:00
apk add --update ca-certificates openssl && \
update-ca-certificates && \
cd /tmp && \
wget https://github.com/sosedoff/pgweb/releases/download/v$PGWEB_VERSION/pgweb_linux_amd64.zip && \
unzip pgweb_linux_amd64.zip -d /usr/bin && \
mv /usr/bin/pgweb_linux_amd64 /usr/bin/pgweb && \
rm -f pgweb_linux_amd64.zip
2014-10-28 19:02:27 +11:00
2015-07-14 22:26:32 -05:00
EXPOSE 8081
CMD ["/usr/bin/pgweb", "--bind=0.0.0.0", "--listen=8081"]