Browse Source

Merge pull request #52 from rostved/postgres-backup-s3/update-pg-dump

Bumped alpine version to edge to get pg_dump version 9.6.1
pull/53/head
Johannes Schickling 7 years ago
committed by GitHub
parent
commit
50db70e4a4
  1. 2
      postgres-backup-s3/Dockerfile
  2. 4
      postgres-backup-s3/install.sh

2
postgres-backup-s3/Dockerfile

@ -1,4 +1,4 @@
FROM alpine:3.4
FROM alpine:3.5
MAINTAINER Johannes Schickling "schickling.j@gmail.com"
ADD install.sh install.sh

4
postgres-backup-s3/install.sh

@ -10,9 +10,9 @@ apk update
apk add postgresql
# install s3 tools
apk add python py-pip
apk add python py2-pip
pip install awscli
apk del py-pip
apk del py2-pip
# install go-cron
apk add curl

Loading…
Cancel
Save