Update 99-run.sh

This commit is contained in:
Alexandre
2025-01-15 18:52:09 +01:00
committed by GitHub
parent 5b7fffcd31
commit b74b1d8065

View File

@@ -37,8 +37,8 @@ bashio::log.info "Starting the app"
# Start background tasks
if [ "$(bashio::info.arch)" != "armv7" ]; then
# /./docker-entrypoint-initdb.d/10-vector.sh & true
docker-entrypoint.sh postgres -c shared_preload_libraries=vectors.so -c search_path="public, vectors" -c logging_collector=on & true
docker-entrypoint.sh postgres -c shared_preload_libraries=vectors.so -c search_path="public, vectors" -c logging_collector=on
else
bashio::log.warning "ARMv7 detected: Starting without vectors.so"
docker-entrypoint.sh postgres & true
docker-entrypoint.sh postgres
fi