update error_log for nextcloud

This commit is contained in:
2021-03-07 22:53:42 -05:00
parent 83820b8829
commit f8a059162c
3 changed files with 28 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
#!/usr/bin/env bash
set -e
export DOCKER_HOST=${DOCKER_HOST:-'dkhost:2376'}
container=$(docker ps -qn1)
while getopts c: name
do
case $name in
c)
container=$OPTARG
;;
*)
;;
esac
done
shift $((OPTIND -1))
echo using container "${container}"
# shellcheck disable=SC2068
docker exec -it -u www-data "$container" $@