2015-09-27 13:03:31 +02:00
|
|
|
#!/usr/bin/env bash
|
2014-11-14 11:06:59 +01:00
|
|
|
#
|
2024-06-06 09:55:47 +02:00
|
|
|
# SPDX-FileCopyrightText: 2014-2016 ownCloud, Inc.
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
2014-11-14 11:06:59 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
if ! command -v docker >/dev/null 2>&1; then
|
|
|
|
echo "No docker executable found - skipped docker stop"
|
|
|
|
exit 0;
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Docker executable found - stop and remove docker containers"
|
|
|
|
|
|
|
|
# retrieve current folder to remove the config from the parent folder
|
2015-04-28 11:17:46 +02:00
|
|
|
thisFolder=`echo $0 | sed 's#env/stop-webdav-ownCloud\.sh##'`
|
2014-11-14 11:06:59 +01:00
|
|
|
|
2015-02-05 15:27:41 +01:00
|
|
|
if [ -z "$thisFolder" ]; then
|
|
|
|
thisFolder="."
|
|
|
|
fi;
|
2014-11-14 11:06:59 +01:00
|
|
|
|
|
|
|
# stopping and removing docker containers
|
|
|
|
for container in `cat $thisFolder/dockerContainerOwnCloud.$EXECUTOR_NUMBER.webdav`; do
|
|
|
|
echo "Stopping and removing docker container $container"
|
|
|
|
# kills running container and removes it
|
2016-03-09 14:02:08 +01:00
|
|
|
docker stop $container
|
2014-11-14 11:06:59 +01:00
|
|
|
docker rm -f $container
|
|
|
|
done;
|
|
|
|
|
|
|
|
# cleanup
|
|
|
|
rm $thisFolder/config.webdav.php
|
|
|
|
rm $thisFolder/dockerContainerOwnCloud.$EXECUTOR_NUMBER.webdav
|
|
|
|
|