mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
14 lines
No EOL
289 B
Bash
Executable file
14 lines
No EOL
289 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "Changing permissions of /var/run/docker.sock for sibling containers"
|
|
|
|
chown root:docker /var/run/docker.sock
|
|
|
|
mkdir -p /app/cache
|
|
chown -R node:node /app/cache
|
|
|
|
mkdir -p /app/compiles
|
|
chown -R node:node /app/compiles
|
|
|
|
./bin/install_texlive_gce.sh
|
|
exec runuser -u node "$@" |