Skip to content

Commit 21203a6

Browse files
committed
Adding PG16 and reworking to minimal Alpine image
1 parent a7f3159 commit 21203a6

File tree

4 files changed

+21
-33
lines changed

4 files changed

+21
-33
lines changed

Dockerfile

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
FROM amazon/aws-cli:latest
2-
ARG POSTGRES_VERSION
3-
4-
RUN yum update -y \
5-
&& yum install -y gzip
1+
ARG ALPINE_VERSION
2+
FROM alpine:${ALPINE_VERSION} as alpine
63

4+
ARG POSTGRES_VERSION
5+
RUN apk add --no-cache postgresql$POSTGRES_VERSION-client \
6+
aws-cli
77
WORKDIR /scripts
8-
COPY install-pg-dump.sh .
9-
RUN "/scripts/install-pg-dump.sh"
108

119
COPY backup.sh .
12-
ENTRYPOINT [ "/scripts/backup.sh" ]
10+
ENTRYPOINT [ "sh", "backup.sh" ]

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ This repo can be used to deploy a [Cron Job](https://render.com/docs/cronjobs) o
44

55
Fork this repo and click the button below to deploy.
66

7+
You'll need to set corresponding OS and Postgres versions:
8+
9+
| `POSTGRES_VERSION` | `ALPINE_VERSION` |
10+
| :----------------: | :--------------: |
11+
| 16 | 3.20 |
12+
| 15 | 3.20 |
13+
| 14 | 3.20 |
14+
| 13 | 3.19 |
15+
| 12 | 3.18 |
16+
717
[![Deploy to Render](https://render.com/images/deploy-to-render-button.svg)](https://render.com/deploy)
818

919
See the guide at https://render.com/docs/backup-postgresql-to-s3 for more information.

install-pg-dump.sh

-24
This file was deleted.

render.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@ services:
2626
- key: AWS_SECRET_ACCESS_KEY
2727
sync: false
2828
# Postgres version of your Postgres instance
29-
# For example, 14
29+
# For example, 16
3030
- key: POSTGRES_VERSION
3131
sync: false
32+
# Alpine base-OS version, see README
33+
# For example, 3.20
34+
- key: ALPINE_VERSION
35+
sync: false
3236

0 commit comments

Comments
 (0)