-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-entrypoint.sh
40 lines (32 loc) · 1.26 KB
/
docker-entrypoint.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env bash
# Copyright © 2023-2024 by Ádám Liszkai using BSD 3-Clause License
# https://source.adaliszk.io/pocketbase/license
cat <<-WELCOME_MESSAGE
THANK YOU FOR USING ADALISZK/POCKETBASE!
PocketBase is under the MIT License: Copyright © 2022-present, Gani Georgiev
Container is under BSD 3-Clause: Copyright © 2023-2024 by Ádám Liszkai
Source: https://github.com/adaliszk/infrastructure
> PocketBase version: ${POCKET_VERSION}
> Datadir: /data $(stat -c '(%u:%g with %A)' /data)
> User: $(id)
WELCOME_MESSAGE
if [[ "${#POCKET_SECRET}" -ne "32" ]]; then
POCKET_SECRET="$(echo $RANDOM | md5sum | head -c 32)"
cat <<-SECRET_WARNING
WARNING: POCKET_SECRET variable was not set or was not a 32 character string!
Secret key was automatically generated: ${POCKET_SECRET}
Please note down this value and set the POCKET_SECRET within your deployment to avoid loosing access to your data!
SECRET_WARNING
export POCKET_SECRET
echo " "
fi
echo "> Preparing directories..."
mkdir -p "${DATA_DIR}" "${PUBLIC_DIR}" "${MIGRATION_DIR}"
echo "> Starting PocketBase..."
# shellcheck disable=SC2068
/opt/pocketbase \
--encryptionEnv="POCKET_SECRET" \
--dir="${DATA_DIR}" \
--migrationsDir="${MIGRATION_DIR}" \
--publicDir="${PUBLIC_DIR}" \
$@