diff --git a/scripts/cleanImages.sh b/scripts/cleanImages.sh index 874723aa6f..b0607ba391 100644 --- a/scripts/cleanImages.sh +++ b/scripts/cleanImages.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -x echo $imagesToBeDeleted diff --git a/scripts/stopDockerContainers.sh b/scripts/stopDockerContainers.sh deleted file mode 100644 index bc5b56b2ff..0000000000 --- a/scripts/stopDockerContainers.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env bash -set -e # exit if commands fails -set -x # trace what gets exe - -docker-compose ps -docker-compose kill -docker-compose rm -fv \ No newline at end of file diff --git a/scripts/startAlfresco.sh b/scripts/waitForAlfrescoToStart.sh similarity index 72% rename from scripts/startAlfresco.sh rename to scripts/waitForAlfrescoToStart.sh index 85dc63a9ff..59c7e40733 100644 --- a/scripts/startAlfresco.sh +++ b/scripts/waitForAlfrescoToStart.sh @@ -1,12 +1,4 @@ #!/usr/bin/env bash -set -e # exit if commands fails -set -x # trace what gets exe - -docker info -docker-compose --version -echo "Starting Alfresco with AGS amps applied in Docker container" -docker-compose ps -docker-compose up -d WAIT_INTERVAL=1 COUNTER=0