summaryrefslogtreecommitdiffstats
path: root/apps/files_external/tests/env/stop-swift-ceph.sh
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-03-09 14:02:08 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2016-03-09 14:02:08 +0100
commitcf3cb4d75e2e42bf96a2e6289267d887c2378122 (patch)
treea7301a1999f31c3500322ddbe55e1432cce31682 /apps/files_external/tests/env/stop-swift-ceph.sh
parenteff17fd3b7021019e387e4f48a38ec450f622649 (diff)
downloadnextcloud-server-cf3cb4d75e2e42bf96a2e6289267d887c2378122.tar.gz
nextcloud-server-cf3cb4d75e2e42bf96a2e6289267d887c2378122.zip
docker containers should be stopped before being removed - refs https://github.com/docker/docker/issues/18758
Diffstat (limited to 'apps/files_external/tests/env/stop-swift-ceph.sh')
-rwxr-xr-xapps/files_external/tests/env/stop-swift-ceph.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_external/tests/env/stop-swift-ceph.sh b/apps/files_external/tests/env/stop-swift-ceph.sh
index 9f15fb05a7d..418f96e63f6 100755
--- a/apps/files_external/tests/env/stop-swift-ceph.sh
+++ b/apps/files_external/tests/env/stop-swift-ceph.sh
@@ -29,6 +29,7 @@ for container in `cat $thisFolder/dockerContainerCeph.$EXECUTOR_NUMBER.swift`; d
echo "Stopping and removing docker container $container"
# kills running container and removes it
+ docker stop $container
docker rm -f $container
done;