Use normal entrypoint

This commit is contained in:
Alexandre
2025-05-26 10:12:59 +02:00
committed by GitHub
parent e072293a4a
commit 1bb78082de

View File

@@ -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/immich-docker-entrypoint.sh postgres & true
/usr/local/bin/docker-entrypoint.sh postgres & true
exit 0
else
/usr/local/bin/immich-docker-entrypoint.sh postgres -c config_file=/etc/postgresql/postgresql.conf
/usr/local/bin/docker-entrypoint.sh postgres -c config_file=/etc/postgresql/postgresql.conf
fi
###############################