Renaming INSTALL env name

This commit is contained in:
nmaillat
2020-05-11 23:12:25 +02:00
parent a3a69d4a9e
commit fd8e9520a0
3 changed files with 15 additions and 18 deletions

View File

@@ -13,24 +13,20 @@ if [ -z "$INSTALL_ACCOUNT_PASSWORD" ]; then
fi
/var/alchemy/Phraseanet/bin/setup system:install \
--email=$INSTALL_ACCOUNT_EMAIL \
--password=$INSTALL_ACCOUNT_PASSWORD \
--db-host=$INSTALL_DB_HOST \
--db-port=$INSTALL_DB_PORT \
--db-user=$INSTALL_DB_USER \
--db-password=$INSTALL_DB_PASSWORD \
--email=$PHRASEANET_ADMIN_ACCOUNT_EMAIL \
--password=$PHRASEANET_ADMIN_ACCOUNT_PASSWORD \
--db-host=$PHRASEANET_DB_HOST \
--db-port=$PHRASEANET_DB_PORT \
--db-user=$PHRASEANET_DB_USER \
--db-password=$PHRASEANET_DB_PASSWORD \
--db-template=$INSTALL_DB_TEMPLATE \
--appbox=$INSTALL_APPBOX \
--databox=$INSTALL_DATABOX \
--server-name=$INSTALL_SERVER_NAME \
--server-name=$PHRASEANET_SERVER_NAME \
--download-path=$PHRASEANET_DOWNLOAD_DIR \
--lazaret-path=$PHRASEANET_LAZARET_DIR \
--caption-path=$PHRASEANET_CAPTION_DIR \
--worker-tmp-files=$PHRASEANET_WORKER_TMP \
--download-path=/var/alchemy/Phraseanet/datas/download \
--lazaret-path=/var/alchemy/Phraseanet/datas/lazaret \
--caption-path=/var/alchemy/Phraseanet/tmp/caption \
--worker-tmp-files=/var/alchemy/Phraseanet/tmp \
--data-path=/var/alchemy/Phraseanet/datas -y
# Bus configuration for scheduler & worker

View File

@@ -31,6 +31,7 @@ if [ -f "$FILE" ]; then
bin/setup system:config set registry.email.emitter-email $PHRASEANET_EMITTER_EMAIL
bin/setup system:config set registry.email.prefix $PHRASEANET_MAIL_OBJECT_PREFIX
fi
bin/console user:password --user_id=1 --password=$PHRASEANET_ADMIN_ACCOUNT_PASSWORD
else
echo "$FILE doesn't exist, entering setup..."
runuser app -c docker/phraseanet/auto-install.sh