We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 301fa24 commit c85a3d0Copy full SHA for c85a3d0
1 file changed
Dockerfile-multigres
@@ -52,6 +52,12 @@ COPY --chmod=0755 docker/pgctld/pgctld /usr/local/bin/pgctld
52
# config from postgresql.conf.tmpl and passes it directly to PostgreSQL, so the
53
# supabase base config (including wal-g and data_directory settings) is never loaded.
54
55
+# wal-g is not used in Multigres (pgbackrest handles backups); remove inherited files.
56
+RUN rm -f \
57
+ /etc/postgresql-custom/wal-g.conf \
58
+ /home/postgres/wal_fetch.sh \
59
+ /root/wal_change_ownership.sh
60
+
61
# Preamble SQL run before init-scripts: creates the postgres role and sets DB ownership.
62
# The wrapper script then passes --pg-initdb-sql-dir to run init-scripts (as postgres)
63
# and migrations (as supabase_admin) in sorted order.
0 commit comments