FusionDirectory-Docker/start.sh

14 lines
250 B
Bash
Raw Normal View History

2022-01-20 08:49:43 +01:00
#!/bin/bash
2023-04-18 20:13:53 +02:00
if [ -n "$FD_PLUGINS" ]; then
apt-get update
plugins=()
for plugin in $FD_PLUGINS; do
plugins+=("fusiondirectory-plugin-$plugin")
done
apt-get install -yy "${plugins[@]}"
fi
2022-01-20 08:49:43 +01:00
php-fpm7.4
nginx -g 'daemon off;'