Files
invoiceninja-docker/debian/rootfs/docker-entrypoint-init.d/10-init-in.sh
2024-11-22 13:48:50 +11:00

14 lines
284 B
Bash

#!/bin/sh
php artisan db:seed --force
# Build up array of arguments...
if [[ ! -z "${IN_USER_EMAIL}" ]]; then
email="--email ${IN_USER_EMAIL}"
fi
if [[ ! -z "${IN_PASSWORD}" ]]; then
password="--password ${IN_PASSWORD}"
fi
php artisan ninja:create-account $email $password