mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
12 lines
237 B
Bash
Executable File
12 lines
237 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
[[ "$BUILD_ENABLED" == "true" ]] && $(dirname $0)/build.sh
|
|
|
|
env \
|
|
PROJECT_NAME=content-ce \
|
|
BASE_PATH=${BASE_PATH:-/workspace} \
|
|
DOCKER_IMAGE_REPO=alfresco/alfresco-content-app \
|
|
$(dirname $0)/run.sh
|