mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
6d98d6a7c0
[server-pro] remove ShareLaTeX branding from filesystem GitOrigin-RevId: c1d2c63bdc888d81e03bb1721e44b6ed6f64524b
18 lines
615 B
Bash
Executable file
18 lines
615 B
Bash
Executable file
#!/bin/bash
|
|
|
|
NODE_PARAMS=""
|
|
if [ "$DEBUG_NODE" == "true" ]; then
|
|
echo "running debug - clsi"
|
|
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 /overleaf/services/clsi/app.js >> /var/log/overleaf/clsi.log 2>&1
|