aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xdocker/entrypoint.sh32
1 files changed, 21 insertions, 11 deletions
diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh
index 2a91839..2e58abc 100755
--- a/docker/entrypoint.sh
+++ b/docker/entrypoint.sh
@@ -1,4 +1,4 @@
1#!/bin/bash 1#!/bin/sh
2 2
3cat << EOL 3cat << EOL
4------------------------------------- 4-------------------------------------
@@ -14,21 +14,31 @@ Support our Open Collective at:
14https://opencollective.com/getferdi/ 14https://opencollective.com/getferdi/
15EOL 15EOL
16 16
17key_file="${DATA_DIR}/FERDI_APP_KEY.txt"
18
19print_app_key_message() {
20 app_key=$1
21 printf '**** App key is %s. ' ${app_key}
22 printf 'You can modify `%s` to update the app key ****\n' ${key_file}
23}
24
17# Create APP key if needed 25# Create APP key if needed
18if [[ -z ${APP_KEY} && ! -f "${DATA_DIR}/FERDI_APP_KEY.txt" ]]; then 26if [ -z ${APP_KEY} ] && [ ! -f ${key_file} ]
19 echo "**** Generating Ferdi-server app key for first run ****" 27then
20 adonis key:generate 28 echo '**** Generating Ferdi-server app key for first run ****'
21 APP_KEY=$(grep APP_KEY .env | cut -d '=' -f2) 29 adonis key:generate
22 echo "${APP_KEY}" > "${DATA_DIR}/FERDI_APP_KEY.txt" 30 APP_KEY=$(grep APP_KEY .env | cut -d '=' -f2)
23 echo "**** App Key set to $APP_KEY you can modify FERDI_APP_KEY.txt to update your key ****" 31 echo ${APP_KEY} > ${key_file}
24else APP_KEY=$(cat "${DATA_DIR}/FERDI_APP_KEY.txt") 32 print_app_key_message ${APP_KEY}
25 echo "**** App Key set to $APP_KEY you can modify FERDI_APP_KEY.txt to update your key ****" 33else
34 APP_KEY=$(cat ${key_file})
35 print_app_key_message ${APP_KEY}
26fi 36fi
27 37
28export APP_KEY 38export APP_KEY
29 39
30node ace migration:run --force 40node ace migration:run --force
31 41
32chown -R "${PUID:-1000}":"${PGID:-1000}" "$DATA_DIR" /app 42chown -R "${PUID:-1000}":"${PGID:-1000}" "${DATA_DIR}" /app
33 43
34su-exec "${PUID:-1000}":"${PGID:-1000}" node server.js#!/bin/bash 44su-exec "${PUID:-1000}":"${PGID:-1000}" node server.js