Skip to content
Snippets Groups Projects
Commit 84df67ae authored by Elliott Shugerman's avatar Elliott Shugerman
Browse files

don't use Python 2

parent 48eb1736
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment