File tree 4 files changed +21
-33
lines changed
4 files changed +21
-33
lines changed Original file line number Diff line number Diff line change 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
6
3
4
+ ARG POSTGRES_VERSION
5
+ RUN apk add --no-cache postgresql$POSTGRES_VERSION-client \
6
+ aws-cli
7
7
WORKDIR /scripts
8
- COPY install-pg-dump.sh .
9
- RUN "/scripts/install-pg-dump.sh"
10
8
11
9
COPY backup.sh .
12
- ENTRYPOINT [ "/scripts/ backup.sh" ]
10
+ ENTRYPOINT [ "sh" , " backup.sh" ]
Original file line number Diff line number Diff line change @@ -4,6 +4,16 @@ This repo can be used to deploy a [Cron Job](https://render.com/docs/cronjobs) o
4
4
5
5
Fork this repo and click the button below to deploy.
6
6
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
+
7
17
[ ![ Deploy to Render] ( https://render.com/images/deploy-to-render-button.svg )] ( https://render.com/deploy )
8
18
9
19
See the guide at https://render.com/docs/backup-postgresql-to-s3 for more information.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -26,7 +26,11 @@ services:
26
26
- key : AWS_SECRET_ACCESS_KEY
27
27
sync : false
28
28
# Postgres version of your Postgres instance
29
- # For example, 14
29
+ # For example, 16
30
30
- key : POSTGRES_VERSION
31
31
sync : false
32
+ # Alpine base-OS version, see README
33
+ # For example, 3.20
34
+ - key : ALPINE_VERSION
35
+ sync : false
32
36
You can’t perform that action at this time.
0 commit comments