7 lines
186 B
Bash
Executable file
7 lines
186 B
Bash
Executable file
#!/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
|