Show logs

This commit is contained in:
Alexandre
2025-02-15 10:41:21 +01:00
committed by GitHub
parent 9c7c6aa01e
commit 963a2134ab

View File

@@ -33,9 +33,9 @@ bashio::log.info "Starting PostgreSQL..."
if [ "$(bashio::info.arch)" = "armv7" ]; then
bashio::log.warning "ARMv7 detected: Starting without vectors.so"
nohup docker-entrypoint.sh postgres > /dev/null 2>&1 &
nohup docker-entrypoint.sh postgres 2>&1 &
else
nohup docker-entrypoint.sh postgres -c shared_preload_libraries=vectors.so -c search_path="public, vectors" > /dev/null 2>&1 &
nohup docker-entrypoint.sh postgres -c shared_preload_libraries=vectors.so -c search_path="public, vectors" 2>&1 &
fi
###############################