Backup and restore PostgresSQL from S3
This dockerfile started out as a fork of the awesome postgres-backup-s3, with a couple of changes:
- Added restore ability
 - Made it possible to only download backup from s3
 - Made it possible to pin another postgres version in dockerfile
 - Added so backup sends a current.sql.gz along with the timestamped backup
 - Removed cron job (since I have no need for it)
 - Supports both postgres 9.4, 9.5, 9.6 and 10
 
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 marteinn/postgres-backup-restore-s3:9.5Docker Compose:
postgres:
    image: postgres
    environment:
        POSTGRES_USER: user
        POSTGRES_PASSWORD: password
pgbackups3:
    image: marteinn/postgres-backup-restore-s3:9.5
    links:
        - postgres
    environment:
        S3_REGION: region
        S3_ACCESS_KEY_ID: key
        S3_SECRET_ACCESS_KEY: secret
        S3_BUCKET: my-bucket
        S3_PREFIX: backup
        POSTGRES_DATABASE: dbname
        POSTGRES_USER: user
        POSTGRES_PASSWORD: password
        DOWNLOAD_PATH: /shared- 
Restore database from the latest backup
docker-compose run db_backup sh run.sh restore - 
Restore database from a specific backup
docker-compose run db_backup sh run.sh restore 2016-03-02T19:47:35Z 
- 
Download database from a specific backup
docker-compose run db_backup sh run.sh download - 
Download database from a specific backup
docker-compose run db_backup sh run.sh download 2016-03-02t19:47:35z 
Make are used to simplify dockerhub distributions.
make build: Build imagesmake push: Push images to dockerhub
Postgres-Backup-Restore-S3 is released under the MIT License.