dsql-admin/dsql-app/docker/docker-entrypoint.sh
Benjamin Toby a3440692a9 Updates
2025-01-13 22:50:42 +01:00

22 lines
394 B
Bash

#!/bin/bash
FIRST_BUILD_FILE="/root/datasquirel/datasquirel-production/FIRST_BUILD"
chown -R mysql:mysql /var/lib/mysql
/usr/bin/mariadbd-safe &
sleep 2
if [ -e "$FIRST_BUILD_FILE" ]; then
cd /root/datasquirel/datasquirel-production
nodecid
exit
fi
cd /root/datasquirel/datasquirel-production
bun install
bun run build
echo "$(date +"%Y-%m-%d_%H-%M-%S")" >FIRST_BUILD
nodecid