File tree Expand file tree Collapse file tree 11 files changed +19
-8
lines changed
files/admin_api_scripts/pg_upgrade_scripts Expand file tree Collapse file tree 11 files changed +19
-8
lines changed Original file line number Diff line number Diff line change 1
1
* @ supabase/backend
2
2
migrations / @ supabase/cli @ supabase/backend
3
- docker /orioledb @ supabase/postgres
3
+ docker /orioledb @ supabase/postgres @ supabase/backend
4
4
common.vars.pkr.hcl @ supabase/postgres @ supabase/backend
Original file line number Diff line number Diff line change @@ -557,7 +557,7 @@ FROM ccache as libsodium
557
557
ARG libsodium_release
558
558
ARG libsodium_release_checksum
559
559
ADD --checksum=${libsodium_release_checksum} \
560
- "https://download.libsodium.org /libsodium/releases /libsodium-${libsodium_release}.tar.gz" \
560
+ "https://supabase-public-artifacts-bucket.s3.amazonaws.com /libsodium/libsodium-${libsodium_release}.tar.gz" \
561
561
/tmp/libsodium.tar.gz
562
562
RUN tar -xvf /tmp/libsodium.tar.gz -C /tmp && \
563
563
rm -rf /tmp/libsodium.tar.gz
Original file line number Diff line number Diff line change 306
306
echo " 11. Copying custom configurations"
307
307
mkdir -p " $MOUNT_POINT /conf"
308
308
cp -R /etc/postgresql-custom/* " $MOUNT_POINT /conf/"
309
+ # removing supautils config as to allow the latest one provided by the latest image to be used
310
+ rm -f " $MOUNT_POINT /conf/supautils.conf" || true
309
311
310
312
# removing wal-g config as to allow it to be explicitly enabled on the new instance
311
313
rm -f " $MOUNT_POINT /conf/wal-g.conf"
Original file line number Diff line number Diff line change 67
67
shell :
68
68
cmd : |
69
69
cp /usr/lib/systemd/system/logrotate.timer /etc/systemd/system/logrotate.timer
70
- sed -i -e 's;daily;*:0/10 ;' /etc/systemd/system/logrotate.timer
70
+ sed -i -e 's;daily;*:0/5 ;' /etc/systemd/system/logrotate.timer
71
71
systemctl reenable logrotate.timer
72
72
become : yes
73
73
Original file line number Diff line number Diff line change 7
7
8
8
- name : libsodium - download libsodium
9
9
get_url :
10
- url : " https://download.libsodium.org /libsodium/releases /libsodium-{{ libsodium_release }}.tar.gz"
10
+ url : " https://supabase-public-artifacts-bucket.s3.amazonaws.com /libsodium/libsodium-{{ libsodium_release }}.tar.gz"
11
11
dest : /tmp/libsodium-{{ libsodium_release }}.tar.gz
12
12
checksum : " {{ libsodium_release_checksum }}"
13
13
timeout : 60
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ postgres_exporter_release_checksum:
46
46
arm64 : sha256:29ba62d538b92d39952afe12ee2e1f4401250d678ff4b354ff2752f4321c87a0
47
47
amd64 : sha256:cb89fc5bf4485fb554e0d640d9684fae143a4b2d5fa443009bd29c59f9129e84
48
48
49
- adminapi_release : 0.63.3
49
+ adminapi_release : 0.63.5
50
50
adminmgr_release : 0.19.0
51
51
52
52
# Postgres Extensions
Original file line number Diff line number Diff line change 1
- postgres-version = " 15.1.1.41 "
1
+ postgres-version = " 15.1.1.42 "
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ ARG postgres_version=15.1.1.24
3
3
ARG pgbouncer_release=1.18.0
4
4
ARG postgrest_release=10.1.2
5
5
ARG gotrue_release=2.130.0
6
- ARG adminapi_release=0.63.2
6
+ ARG adminapi_release=0.63.5
7
7
ARG adminmgr_release=0.19.0
8
8
ARG vector_release=0.22.3
9
9
ARG postgres_exporter_release=0.15.0
@@ -276,6 +276,7 @@ RUN mkdir -p /var/log/wal-g \
276
276
&& chown adminapi:adminapi /etc/wal-g/config.json \
277
277
&& echo '{"WALG_S3_PREFIX": "s3://foo/bar/"}' > /etc/wal-g/config.json
278
278
RUN chown -R adminapi:adminapi /etc/adminapi
279
+ RUN sed -i "s;#include = '/etc/postgresql-custom/generated-optimizations.conf';include = '/etc/postgresql-custom/generated-optimizations.conf';" /etc/postgresql/postgresql.conf
279
280
280
281
# Add healthcheck and entrypoint scripts
281
282
COPY docker/all-in-one/healthcheck.sh /usr/local/bin/
Original file line number Diff line number Diff line change @@ -512,7 +512,7 @@ FROM ccache as libsodium
512
512
ARG libsodium_release
513
513
ARG libsodium_release_checksum
514
514
ADD --checksum=${libsodium_release_checksum} \
515
- "https://download.libsodium.org /libsodium/releases /libsodium-${libsodium_release}.tar.gz" \
515
+ "https://supabase-public-artifacts-bucket.s3.amazonaws.com /libsodium/libsodium-${libsodium_release}.tar.gz" \
516
516
/tmp/libsodium.tar.gz
517
517
RUN tar -xvf /tmp/libsodium.tar.gz -C /tmp && \
518
518
rm -rf /tmp/libsodium.tar.gz
Original file line number Diff line number Diff line change 53
53
# want to have an arbitrary order, since it might matter. being
54
54
# explicit is better.
55
55
( import ./nix/overlays/cargo-pgrx-0-11-3.nix )
56
+ # (import ./nix/overlays/postgis.nix)
56
57
#(import ./nix/overlays/gdal-small.nix)
57
58
58
59
] ;
You can’t perform that action at this time.
0 commit comments