mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
# Conflicts: # .travis.env-vars.yml # .travis.yml # pom.xml # rm-automation/rm-automation-ui/src/test/java/org/alfresco/test/community/smoke/DeclareVersionAsRecordTests.java # rm-automation/rm-automation-ui/src/test/java/org/alfresco/test/community/smoke/FileVersionAsRecordTest.java # rm-automation/rm-automation-ui/src/test/java/org/alfresco/test/community/smoke/records/DeclareVersionAsRecordTests.java # rm-enterprise/rm-enterprise-repo/.env # rm-enterprise/rm-enterprise-share/.env # scripts/dockerLimitMemory.sh # scripts/startAlfresco.sh
12 lines
346 B
Bash
12 lines
346 B
Bash
#!/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
|