forked from silverbulletmd/silverbullet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-entrypoint.sh
More file actions
executable file
·31 lines (29 loc) · 1.36 KB
/
docker-entrypoint.sh
File metadata and controls
executable file
·31 lines (29 loc) · 1.36 KB
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
#!/bin/bash -e
# If a /space/CONTAINER_BOOT.md file exists, execute it as a bash script upon boot
if [ -f "/space/CONTAINER_BOOT.md" ]; then
echo "Executing CONTAINER_BOOT.md script"
bash /space/CONTAINER_BOOT.md &
fi
# Check if UID and GID are passed as environment variables, if not, extract from the space folder owner
if [ -z "$PUID" ] && [ "$UID" == "0" ] ; then
# Get the UID of the folder owner
PUID=$(stat -c "%u" "$SB_FOLDER")
echo "Will run SilverBullet with UID $PUID, inferred from the owner of $SB_FOLDER (set PUID environment variable to override)"
fi
if [ -z "$PGID" ]; then
# Get the GID of the folder owner
PGID=$(stat -c "%g" "$SB_FOLDER")
fi
if [ "$PUID" == "0" ] || [ "$UID" != "0" ]; then
# Will run SilverBullet as default user
/silverbullet $@
else
echo "Creating 'silverbullet' group (with GID $PGID) and 'silverbullet' user (with UID $PUID) inside container"
# Create silverbullet user and group ad-hoc mapped to PUID and PGID if they don't already exist
getent group silverbullet > /dev/null || addgroup -g $PGID silverbullet
getent passwd silverbullet > /dev/null || adduser -D -H -G silverbullet -u $PUID silverbullet
args="$@"
# And run via su as requested PUID
echo "Running SilverBullet as user configured with PUID $PUID and PGID $PGID"
su silverbullet -s /bin/bash -c "/silverbullet $args"
fi