diff --git a/installer/init.sql b/installer/init.sql index 3f058f576..dfc30f9d7 100644 --- a/installer/init.sql +++ b/installer/init.sql @@ -2,4 +2,4 @@ CREATE DATABASE "maxkb"; \c "maxkb"; -CREATE EXTENSION "vector" VERSION '0.6.1'; \ No newline at end of file +CREATE EXTENSION "vector"; \ No newline at end of file diff --git a/installer/run-maxkb.sh b/installer/run-maxkb.sh index 4f388f695..f55f563f8 100644 --- a/installer/run-maxkb.sh +++ b/installer/run-maxkb.sh @@ -7,10 +7,4 @@ docker-entrypoint.sh postgres & until pg_isready --host=127.0.0.1; do sleep 1 && echo "waiting for postgres"; done # Start MaxKB -python /opt/maxkb/app/main.py start & - -# Wait for any process to exit -wait -n - -# Exit with status of process that exited first -exit $? \ No newline at end of file +python /opt/maxkb/app/main.py start \ No newline at end of file