mirror of
https://github.com/nextcloud/server.git
synced 2025-01-30 22:37:01 +00:00
c1555fc33e
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
31 lines
856 B
Bash
Executable file
31 lines
856 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# SPDX-FileCopyrightText: 2015-2016 ownCloud, Inc.
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
#
|
|
|
|
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
|
|
thisFolder=`echo $0 | sed 's#env/stop-webdav-apache\.sh##'`
|
|
|
|
if [ -z "$thisFolder" ]; then
|
|
thisFolder="."
|
|
fi;
|
|
|
|
# stopping and removing docker containers
|
|
for container in `cat $thisFolder/dockerContainerWebdav.$EXECUTOR_NUMBER.webdav`; do
|
|
echo "Stopping and removing docker container $container"
|
|
# kills running container and removes it
|
|
docker rm -f $container
|
|
done;
|
|
|
|
# cleanup
|
|
rm $thisFolder/config.webdav.php
|
|
rm $thisFolder/dockerContainerWebdav.$EXECUTOR_NUMBER.webdav
|
|
|