Skip to content

Commit

Permalink
Merge pull request #62 from ikethecoder/master
Browse files Browse the repository at this point in the history
Add a dockerfile for postgres 12
  • Loading branch information
WadeBarnes authored Oct 4, 2020
2 parents 60567fd + 952bd4d commit 83f3cdd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ labels:
- [Database Plugin Support](#database-plugin-support)
- [Backup](#backup)
- [Example Deployment](#example-deployment)
- [Deploy with Helm Chart](#deploy-with-helm-chart)
- [Tip and Tricks](#tip-and-tricks)
- [Getting Help or Reporting an Issue](#getting-help-or-reporting-an-issue)
- [How to Contribute](#how-to-contribute)
Expand Down Expand Up @@ -461,6 +462,15 @@ TL;DR for a simple backup of three PostgreSQL databases in the same project name
NOTE the `BACKUP_VOLUME_NAME=bk-b7cg3n-deploy-yxq6rf8z23pu` is from Step 2 above; when using the GUI there is no option to set the PVC name.
</details>

## Deploy with Helm Chart

```
helm repo add bcgov http://bcgov.github.io/helm-charts
helm upgrade --install db-backup-storage bcgov/backup-storage
```

For customizing the configuration, go to: https://github.com/bcgov/helm-charts/tree/master/backup-storage

# Tip and Tricks

Please refer to the [Tips and Tricks](./docs/TipsAndTricks.md) document for solutions to known issues.
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This image provides a postgres installation from which to run backups
FROM registry.access.redhat.com/rhscl/postgresql-10-rhel7
FROM centos/postgresql-12-centos7:20200917-804ef01

# Change timezone to PST for convenience
ENV TZ=PST8PDT
Expand Down

0 comments on commit 83f3cdd

Please sign in to comment.