pixelfed/docker/shared/root/docker/entrypoint.d/11-first-time-setup.sh

39 lines
1.2 KiB
Bash
Raw Normal View History

2024-01-05 17:29:45 +00:00
#!/bin/bash
2024-01-15 17:16:00 +00:00
: "${ENTRYPOINT_ROOT:="/docker"}"
# shellcheck source=SCRIPTDIR/../helpers.sh
source "${ENTRYPOINT_ROOT}/helpers.sh"
2024-01-05 17:29:45 +00:00
entrypoint-set-script-name "$0"
load-config-files
2024-01-15 15:32:29 +00:00
# Allow automatic applying of outstanding/new migrations on startup
: "${DOCKER_APP_RUN_ONE_TIME_SETUP_TASKS:=1}"
2024-01-15 15:32:29 +00:00
if is-false "${DOCKER_APP_RUN_ONE_TIME_SETUP_TASKS}"; then
2024-01-15 15:32:29 +00:00
log-warning "Automatic run of the 'One-time setup tasks' is disabled."
log-warning "Please set [DOCKER_APP_RUN_ONE_TIME_SETUP_TASKS=1] in your [.env] file to enable this."
2024-01-15 15:32:29 +00:00
exit 0
fi
2024-01-05 23:16:26 +00:00
await-database-ready
2024-01-05 17:29:45 +00:00
2024-01-17 14:41:48 +00:00
# Following https://docs.pixelfed.org/running-pixelfed/installation/#one-time-setup-tasks
#
# NOTE: Caches happens in [30-cache.sh]
2024-01-05 23:16:26 +00:00
only-once "key:generate" run-as-runtime-user php artisan key:generate
only-once "storage:link" run-as-runtime-user php artisan storage:link
2024-01-05 23:16:26 +00:00
only-once "initial:migrate" run-as-runtime-user php artisan migrate --force
only-once "import:cities" run-as-runtime-user php artisan import:cities
if is-true "${ACTIVITY_PUB:-false}"; then
only-once "instance:actor" run-as-runtime-user php artisan instance:actor
fi
if is-true "${OAUTH_ENABLED:-false}"; then
only-once "passport:keys" run-as-runtime-user php artisan passport:keys
fi