Files
server/util/Attachments/entrypoint.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
857 B
Bash
Raw Normal View History

2018-03-27 21:14:52 -04:00
#!/bin/bash
2018-04-16 15:30:07 -04:00
# Setup
GROUPNAME="bitwarden"
2018-03-27 22:57:30 -04:00
USERNAME="bitwarden"
2018-04-16 15:30:07 -04:00
LUID=${LOCAL_UID:-0}
LGID=${LOCAL_GID:-0}
2018-04-16 15:30:07 -04:00
# Step down from host root to well-known nobody/nogroup user
2018-03-27 22:57:30 -04:00
if [ $LUID -eq 0 ]
2018-04-16 15:30:07 -04:00
then
LUID=65534
2018-04-16 15:30:07 -04:00
fi
if [ $LGID -eq 0 ]
2018-03-27 22:57:30 -04:00
then
LGID=65534
2018-03-27 22:57:30 -04:00
fi
# Create user and group
2018-04-16 15:30:07 -04:00
groupadd -o -g $LGID $GROUPNAME >/dev/null 2>&1 ||
groupmod -o -g $LGID $GROUPNAME >/dev/null 2>&1
useradd -o -u $LUID -g $GROUPNAME -s /bin/false $USERNAME >/dev/null 2>&1 ||
usermod -o -u $LUID -g $GROUPNAME -s /bin/false $USERNAME >/dev/null 2>&1
mkhomedir_helper $USERNAME
2018-04-02 21:11:32 -04:00
2018-04-16 15:30:07 -04:00
# The rest...
chown -R $USERNAME:$GROUPNAME /bitwarden_server
2018-03-27 14:55:33 -04:00
mkdir -p /etc/bitwarden/core/attachments
2018-04-16 15:30:07 -04:00
chown -R $USERNAME:$GROUPNAME /etc/bitwarden
2018-03-27 14:55:33 -04:00
exec gosu $USERNAME:$GROUPNAME dotnet /bitwarden_server/Server.dll \
2020-11-05 11:39:15 -05:00
/contentRoot=/etc/bitwarden/core/attachments /webRoot=. /serveUnknown=true