diff --git a/README.md b/README.md index 903bd73..465a6e6 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,7 @@ This project is a fork and re-structuring of schickling's [postgres-backup-s3](h ## Other changes - uses `pg_dump`'s `custom` format (see [docs](https://www.postgresql.org/docs/10/app-pgdump.html)) + - doesn't use Python 2 - backup blobs and all schemas by default - drop and re-create all database objects on restore - some env vars renamed or removed diff --git a/src/install.sh b/src/install.sh index 3ae5fbb..ec514b1 100644 --- a/src/install.sh +++ b/src/install.sh @@ -12,9 +12,8 @@ apk add postgresql-client apk add gnupg # install s3 tools -apk add python py-pip -pip install awscli -apk del py-pip +apk add python3 +pip3 install awscli # install go-cron apk add curl