mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Move scripts used by travis jobs under travis folder because when mirroring all scripts folders are excluded
This commit is contained in:
11
travis/scripts/startAlfresco.sh
Normal file
11
travis/scripts/startAlfresco.sh
Normal file
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env bash
|
||||
# fail script immediately on any errors in external commands and print the lines
|
||||
set -ev
|
||||
|
||||
cd $1
|
||||
# if 2nd input parameter is true then use .env.ci where TRANSFORM_SERVICE_ENABLED flag is set to false
|
||||
# in order to not use anymore Transform router and Shared File Store
|
||||
if $2 ; then
|
||||
mv -u .env.ci .env
|
||||
fi
|
||||
docker-compose up -d
|
Reference in New Issue
Block a user