Jenkinsfile and xai cli for nextcloud deployment
This commit is contained in:
21
dockerfiles/services/nextcloud/cli/occ
Executable file
21
dockerfiles/services/nextcloud/cli/occ
Executable file
@@ -0,0 +1,21 @@
|
||||
#!/usr/bin/env bash
|
||||
set -ex
|
||||
|
||||
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))
|
||||
|
||||
# shellcheck disable=SC2068
|
||||
docker exec -it -u www-data "$container" php occ $@
|
||||
Reference in New Issue
Block a user