mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-25 15:55:22 +00:00
add first time setup logic
This commit is contained in:
parent
c1fbccb07c
commit
c4404590f2
4 changed files with 52 additions and 5 deletions
|
@ -33,7 +33,7 @@ TZ="UTC"
|
||||||
# Please do this before deploying an application!
|
# Please do this before deploying an application!
|
||||||
#
|
#
|
||||||
# See: https://docs.pixelfed.org/technical-documentation/config/#app_key
|
# See: https://docs.pixelfed.org/technical-documentation/config/#app_key
|
||||||
APP_KEY=""
|
APP_KEY=base64:IvvWCuLmAAcyPBzDI+IH6OxnU9w2kTSYZrcg6F4m7Uk=
|
||||||
|
|
||||||
# See: https://docs.pixelfed.org/technical-documentation/config/#app_name-1
|
# See: https://docs.pixelfed.org/technical-documentation/config/#app_name-1
|
||||||
APP_NAME="Pixelfed Prod"
|
APP_NAME="Pixelfed Prod"
|
||||||
|
@ -264,7 +264,7 @@ DB_HOST="db"
|
||||||
DB_USERNAME="pixelfed"
|
DB_USERNAME="pixelfed"
|
||||||
|
|
||||||
# See: https://docs.pixelfed.org/technical-documentation/config/#db_password
|
# See: https://docs.pixelfed.org/technical-documentation/config/#db_password
|
||||||
DB_PASSWORD="__CHANGE_ME__"
|
DB_PASSWORD="helloworld"
|
||||||
|
|
||||||
# See: https://docs.pixelfed.org/technical-documentation/config/#db_database
|
# See: https://docs.pixelfed.org/technical-documentation/config/#db_database
|
||||||
DB_DATABASE="pixelfed_prod"
|
DB_DATABASE="pixelfed_prod"
|
||||||
|
|
|
@ -3,6 +3,11 @@ source /docker/helpers.sh
|
||||||
|
|
||||||
entrypoint-set-script-name "$0"
|
entrypoint-set-script-name "$0"
|
||||||
|
|
||||||
|
# Ensure the two Docker volumes are owned by the runtime user
|
||||||
|
run-as-current-user chown --verbose ${RUNTIME_UID}:${RUNTIME_GID} "./.env"
|
||||||
|
run-as-current-user chown --verbose ${RUNTIME_UID}:${RUNTIME_GID} "./bootstrap/cache"
|
||||||
|
run-as-current-user chown --verbose ${RUNTIME_UID}:${RUNTIME_GID} "./storage"
|
||||||
|
|
||||||
# Optionally fix ownership of configured paths
|
# Optionally fix ownership of configured paths
|
||||||
: ${ENTRYPOINT_ENSURE_OWNERSHIP_PATHS:=""}
|
: ${ENTRYPOINT_ENSURE_OWNERSHIP_PATHS:=""}
|
||||||
|
|
|
@ -3,9 +3,6 @@ source /docker/helpers.sh
|
||||||
|
|
||||||
entrypoint-set-script-name "$0"
|
entrypoint-set-script-name "$0"
|
||||||
|
|
||||||
run-as-current-user chown --verbose ${RUNTIME_UID}:${RUNTIME_GID} "./bootstrap/cache"
|
|
||||||
run-as-current-user chown --verbose ${RUNTIME_UID}:${RUNTIME_GID} "./storage"
|
|
||||||
|
|
||||||
# Copy the [storage/] skeleton files over the "real" [storage/] directory so assets are updated between versions
|
# Copy the [storage/] skeleton files over the "real" [storage/] directory so assets are updated between versions
|
||||||
run-as-runtime-user cp --recursive storage.skel/. ./storage/
|
run-as-runtime-user cp --recursive storage.skel/. ./storage/
|
||||||
|
|
||||||
|
|
45
contrib/docker/shared/root/docker/entrypoint.d/11-first-time-setup.sh
Executable file
45
contrib/docker/shared/root/docker/entrypoint.d/11-first-time-setup.sh
Executable file
|
@ -0,0 +1,45 @@
|
||||||
|
#!/bin/bash
|
||||||
|
source /docker/helpers.sh
|
||||||
|
|
||||||
|
entrypoint-set-script-name "$0"
|
||||||
|
|
||||||
|
# if the script is running in another container, wait for it to complete
|
||||||
|
while [ -e "./storage/docker-first-time-is-running" ]; do
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
|
||||||
|
# We got the lock!
|
||||||
|
touch "./storage/docker-first-time-is-running"
|
||||||
|
|
||||||
|
# Make sure to clean up on exit
|
||||||
|
trap "rm -f ./storage/docker-first-time-is-running" EXIT
|
||||||
|
|
||||||
|
if [ ! -e "./storage/docker-storage-link-has-run" ]; then
|
||||||
|
run-as-runtime-user php artisan storage:link
|
||||||
|
touch "./storage/docker-storage-link-has-run"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -e "./storage/docker-key-generate-has-run" ]; then
|
||||||
|
run-as-runtime-user php artisan key:generate
|
||||||
|
touch "./storage/docker-key-generate-has-run"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -e "./storage/docker-migrate-has-run" ]; then
|
||||||
|
run-as-runtime-user php artisan migrate --force
|
||||||
|
touch "./storage/docker-migrate-has-run"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -e "./storage/docker-import-cities-has-run" ]; then
|
||||||
|
run-as-runtime-user php artisan import:cities
|
||||||
|
touch "./storage/docker-import-cities-has-run"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# if [ ! -e "./storage/docker-instance-actor-has-run" ]; then
|
||||||
|
# run-as-runtime-user php artisan instance:actor
|
||||||
|
# touch "./storage/docker-instance-actor-has-run"
|
||||||
|
# fi
|
||||||
|
|
||||||
|
# if [ ! -e "./storage/docker-passport-keys-has-run" ]; then
|
||||||
|
# run-as-runtime-user php artisan instance:actor
|
||||||
|
# touch "./storage/docker-passport-keys-has-run"
|
||||||
|
# fi
|
Loading…
Reference in a new issue