mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-14 20:40:17 -05:00
Copy logic from clsi entrypoint, to set permissions on docker.sock
This commit is contained in:
parent
fad5639f55
commit
460d334d21
1 changed files with 9 additions and 0 deletions
|
@ -7,4 +7,13 @@ if [ "$DEBUG_NODE" == "true" ]; then
|
|||
NODE_PARAMS="--inspect=0.0.0.0:30130"
|
||||
fi
|
||||
|
||||
# Set permissions on docker.sock if present,
|
||||
# To enable sibling-containers (see entrypoint.sh in clsi project)
|
||||
if [ -e '/var/run/docker.sock' ]; then
|
||||
echo ">> Setting permissions on docker socket"
|
||||
DOCKER_GROUP=$(stat -c '%g' /var/run/docker.sock)
|
||||
groupadd --non-unique --gid ${DOCKER_GROUP} dockeronhost
|
||||
usermod -aG dockeronhost www-data
|
||||
fi
|
||||
|
||||
exec /sbin/setuser www-data /usr/bin/node $NODE_PARAMS /var/www/sharelatex/clsi/app.js >> /var/log/sharelatex/clsi.log 2>&1
|
||||
|
|
Loading…
Reference in a new issue