Files
Phraseanet/docker/phraseanet/boot.sh

12 lines
232 B
Bash
Executable File

#!/bin/bash
FILE=/var/alchemy/Phraseanet/config/configuration.yml
if [ -f "$FILE" ]; then
echo "$FILE exist, skip setup."
else
echo "$FILE doesn't exist, entering setup..."
runuser app -c '/auto-install.sh'
fi
php-fpm