You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ghostfolio/docker/entrypoint.sh

13 lines
167 B

#!/bin/sh
set -ex
echo "Running database migrations"
npx prisma migrate deploy
echo "Seeding the database"
npx prisma db seed
echo "Starting the server"
node main