7 lines
194 B
Plaintext
7 lines
194 B
Plaintext
|
#!/bin/bash
|
||
|
if dcp=$(./dcp $1); then
|
||
|
shift 1
|
||
|
eval "export NEXTCLOUD_CMD=idle; $dcp run --rm --name nextcloud_runner nextcloud nextcloud $*"
|
||
|
else
|
||
|
echo no environment file ${1:-$ENV_FILE}
|
||
|
fi
|