mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-09-17 14:21:39 +00:00
- Simplify dependencies and standardise order - README updated - Green builds - Changes to make Jars in enterprise war match - Changes to make files in enterprise image match - Added travis_wait 40 to the initial build as it can take 20 minutes to download artifacts - Removed TAS tests from .travis.yml but not the code as TAS tests require Java 11 - Added in an empty test so the build runs on feature branches.
17 lines
487 B
Bash
Executable File
17 lines
487 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
export DOCKER_COMPOSE_PATH=$1
|
|
|
|
if [ -z "$DOCKER_COMPOSE_PATH" ]
|
|
then
|
|
echo "Please provide path to docker-compose.yml: \"${0##*/} /path/to/docker-compose.yml\""
|
|
exit 1
|
|
fi
|
|
|
|
echo "Killing ACS stack in ${DOCKER_COMPOSE_PATH}"
|
|
|
|
docker-compose --file ${DOCKER_COMPOSE_PATH} ps
|
|
# logs for debug
|
|
docker-compose --file ${DOCKER_COMPOSE_PATH} logs --no-color -t alfresco
|
|
docker-compose --file ${DOCKER_COMPOSE_PATH} kill
|
|
docker-compose --file ${DOCKER_COMPOSE_PATH} rm -fv |