8 lines
186 B
Plaintext
8 lines
186 B
Plaintext
|
#!/bin/bash
|
||
|
if envf=$(./env_file $1) ; then
|
||
|
source $envf
|
||
|
docker exec -it ${NEXTCLOUD_NAME:-nextcloud} /opt/bin/entrypoint nextcloud shell
|
||
|
else
|
||
|
echo no environment file $1
|
||
|
fi
|