Restore a SQL backup from S3 to PostgresSQL
This will potentially put your database in a very bad state or complete destroy your data, be very careful.
This is made to restore a backup made from postgres-backup-s3, if you backup came from somewhere else please check your format.
Docker:
$ docker run -e S3_ACCESS_KEY_ID=key -e S3_SECRET_ACCESS_KEY=secret -e S3_BUCKET=my-bucket -e S3_PREFIX=backup -e POSTGRES_DATABASE=dbname -e POSTGRES_USER=user -e POSTGRES_PASSWORD=password -e POSTGRES_HOST=localhost schickling/postgres-restore-s3
If you wish to drop the public schema (drop schema public cascade; create schema public) then set the environment variable DROP_PUBLIC=yes. This is useful for situations where you wish to restore a database which currently has data / schemas in it.
Content type
Image
Digest
sha256:f9a786fd1…
Size
33.8 MB
Last updated
over 3 years ago
docker pull jphj/postgres-restore-s3