From 009fb4e26e74393a354b55ba9ad7efffd9a08bd9 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 26 May 2025 10:13:31 +0200 Subject: [PATCH] Use diect link --- postgres/rootfs/etc/cont-init.d/99-run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/postgres/rootfs/etc/cont-init.d/99-run.sh b/postgres/rootfs/etc/cont-init.d/99-run.sh index 2b1d459b0..745a548c9 100755 --- a/postgres/rootfs/etc/cont-init.d/99-run.sh +++ b/postgres/rootfs/etc/cont-init.d/99-run.sh @@ -47,10 +47,10 @@ bashio::log.info "Starting PostgreSQL..." if [ "$(bashio::info.arch)" = "armv7" ]; then bashio::log.warning "ARMv7 detected: Starting without extensions" - /usr/local/bin/docker-entrypoint.sh postgres & true + docker-entrypoint.sh postgres & true exit 0 else - /usr/local/bin/docker-entrypoint.sh postgres -c config_file=/etc/postgresql/postgresql.conf + docker-entrypoint.sh postgres -c config_file=/etc/postgresql/postgresql.conf fi ###############################