This repository has been archived on 2024-02-04. You can view files and clone it, but cannot push or open issues or pull requests.
flox-dockerized/rootfs/etc/cont-init.d/52-migrate

18 lines
407 B
Text
Raw Normal View History

2022-04-16 01:25:32 +02:00
#!/usr/bin/with-contenv bash
# shellcheck shell=bash
# source env variables
source /etc/cont-init.d/20-setenv
if [[ "${flox_init,,}" == "true" ]]; then
# init db
2022-04-16 14:37:16 +02:00
printf 'Initializing database\n'
php /flox/backend/artisan flox:db --no-interaction "${flox_username}" "${flox_password}" >/dev/null
2022-04-16 01:25:32 +02:00
else
# migrate db
2022-04-16 14:37:16 +02:00
printf 'Migrating database\n'
php /flox/backend/artisan migrate >/dev/null
2022-04-16 01:25:32 +02:00
fi