1
0
Fork 0
mirror of synced 2024-06-27 10:30:38 +12:00
ArchiveBox/bin/docker_entrypoint.sh

26 lines
850 B
Bash
Raw Normal View History

2020-07-22 08:24:43 +12:00
#!/usr/bin/env bash
2020-07-22 17:30:58 +12:00
COMMAND="$*"
# Autodetect UID,GID of host user based on ownership of files in the data volume
DATA_DIR="${DATA_DIR:-/data}"
ARCHIVEBOX_USER="${ARCHIVEBOX_USER:-archivebox}"
USID=$(stat --format="%u" "$DATA_DIR")
GRID=$(stat --format="%g" "$DATA_DIR")
2020-07-22 17:30:58 +12:00
# If user is not root, modify the archivebox user+files to have the same uid,gid
2020-07-22 08:14:54 +12:00
if [[ "$USID" != 0 && "$GRID" != 0 ]]; then
2020-07-22 08:24:43 +12:00
usermod -u "$USID" "$ARCHIVEBOX_USER"
groupmod -g "$GRID" "$ARCHIVEBOX_USER"
2020-07-22 08:14:54 +12:00
chown -R "$USID":"$GRID" "/home/$ARCHIVEBOX_USER"
2020-07-28 23:57:26 +12:00
chown "$USID":"$GRID" "$DATA_DIR"
2020-07-28 23:58:16 +12:00
chown "$USID":"$GRID" "$DATA_DIR/*" > /dev/null 2>&1 || true
fi
2020-07-22 17:30:58 +12:00
# run django as the new archivebox user
# any files touched will have the same uid,gid
# inside docker and outside docker on the host
2020-07-22 08:24:43 +12:00
gosu "$ARCHIVEBOX_USER" bash -c "$COMMAND"
2020-07-22 17:30:58 +12:00
# e.g. "archivebox server"