update pocketbase,

This commit is contained in:
louiscklaw
2025-04-18 03:06:06 +08:00
parent d863d6d469
commit 03313dfc65
993 changed files with 71724 additions and 19 deletions

View File

@@ -0,0 +1,28 @@
#!/usr/bin/env sh
set -ex
sleep 1
# original from dockerfile
echo "init first migration for create user"
/usr/local/bin/pocketbase migrate up
echo "create admin account"
# /usr/local/bin/pocketbase superuser upsert admin@123.com Aa12345678
/usr/local/bin/pocketbase migrate up --dir=/pb_data --migrationsDir=/pb_migrations
echo "start server"
/usr/local/bin/pocketbase serve \
--http=0.0.0.0:8090 \
--dir=/pb_data \
--migrationsDir=/pb_migrations \
--publicDir=/pb_public \
--hooksDir=/pb_hooks &
sleep 5
echo "calling hook"
/usr/local/bin/pocketbase hello