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

35 lines
1.3 KiB
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
# 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-11-23 18:59:50 +13:00
usermod -u "$USID" "$ARCHIVEBOX_USER" > /dev/null 2>&1
groupmod -g "$GRID" "$ARCHIVEBOX_USER" > /dev/null 2>&1
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 commands as the new archivebox user in Docker.
# Any files touched will have the same uid & gid
# inside Docker and outside on the host machine.
if [[ "$1" == /* || "$1" == "echo" || "$1" == "archivebox" ]]; then
# arg 1 is a binary, execute it verbatim
# e.g. "archivebox init"
# "/bin/bash"
# "echo"
gosu "$ARCHIVEBOX_USER" bash -c "$*"
else
# no command given, assume args were meant to be passed to archivebox cmd
# e.g. "add https://example.com"
# "manage createsupseruser"
# "server 0.0.0.0:8000"
gosu "$ARCHIVEBOX_USER" bash -c "archivebox $*"
fi