1
0
Fork 0
mirror of synced 2024-06-15 08:54:32 +12:00
ArchiveBox/bin/entrypoint.sh

20 lines
657 B
Bash
Raw Normal View History

#!/bin/bash
# detect userid:groupid of contents of data folder
DATA_DIR="${DATA_DIR:-/data}"
ARCHIVEBOX_USER="${ARCHIVEBOX_USER:-archivebox}"
# Autodetect UID and GID of host user based on ownership of files in the volume
USID=$(stat --format="%u" "$DATA_DIR")
GRID=$(stat --format="%g" "$DATA_DIR")
COMMAND="$@"
# run django as the host user's uid:gid so that any files touched have the same permissions as outside the container
# e.g. ./manage.py runserver
chown "$USID":"$GRID" "$DATA_DIR"
2020-07-21 14:25:01 +12:00
chown -R "$USID":"$GRID" "/home/$ARCHIVEBOX_USER"
usermod -u $USID $ARCHIVEBOX_USER
groupmod -g $GRID $ARCHIVEBOX_USER
2020-07-21 14:25:01 +12:00
gosu $ARCHIVEBOX_USER bash -c "$COMMAND"