summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorMathieu Velten <mathieuv@matrix.org>2022-09-16 17:12:45 +0200
committerGitHub <noreply@github.com>2022-09-16 17:12:45 +0200
commit384dca53d6f0075343fcaf82c04261e52b53b7a3 (patch)
treedd81a484f3a0b1baab81185766d06612e080a680 /changelog.d
parentAdd an admin API endpoint to find a user based on its external ID in an auth ... (diff)
downloadsynapse-384dca53d6f0075343fcaf82c04261e52b53b7a3.tar.xz
complement: init postgres DB directly inside the target image (#13819)
Doing so in the base postgres image doesn't work with buildah because
changes in a declared VOLUME in the Dockerfile is supposed to be
discarded, cf https://docs.docker.com/engine/reference/builder/#volume

Signed-off-by: Mathieu Velten <mathieuv@matrix.org>
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/13819.misc1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/13819.misc b/changelog.d/13819.misc
new file mode 100644
index 0000000000..e2f3bc1f40
--- /dev/null
+++ b/changelog.d/13819.misc
@@ -0,0 +1 @@
+complement: init postgres DB directly inside the target image instead of the base postgres image to fix building using Buildah.