Fix jwt-token
This commit is contained in:
@@ -7,5 +7,25 @@ mkdir -p /app/uploads/logos
|
||||
chown -R nodejs:nodejs /app/uploads
|
||||
chmod -R 755 /app/uploads
|
||||
|
||||
# Wait for database to be ready
|
||||
echo "Waiting for database to be ready..."
|
||||
while ! nc -z database 5432; do
|
||||
echo "Database not ready, waiting..."
|
||||
sleep 1
|
||||
done
|
||||
echo "Database is ready!"
|
||||
|
||||
# Run database migrations as nodejs user
|
||||
echo "Running database migrations..."
|
||||
su-exec nodejs npm run db:migrate
|
||||
|
||||
# Check if migrations were successful
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "Database migrations completed successfully"
|
||||
else
|
||||
echo "Database migrations failed"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Switch to nodejs user and execute the command with dumb-init for signal handling
|
||||
exec su-exec nodejs dumb-init -- "$@"
|
||||
Reference in New Issue
Block a user