2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2025-01-11 01:32:10 +00:00

Merge pull request #7 from carlos22/patch-1

fixing various issues with dbench
This commit is contained in:
vishalseshagiri 2017-08-31 14:50:50 +05:30 committed by GitHub
commit 2543e54bf7

36
dbench
View File

@ -1,27 +1,33 @@
usage="$(basename "$0") [-h] [-c "<command to be executed inside container>"]
#!/usr/bin/env bash
where:
-h show this help text
-c execute a command inside docker using docker exec"
display_usage() {
echo "$(basename "$0") [-h] [-c \"<command to be executed inside container>\"]"
echo ''
echo 'where:'
echo ' -h show this help text'
echo ' -c execute a command inside docker using docker exec'
}
if [[ $# -eq 0 ]]; then
temp="docker exec -it frappe bash"
$temp
docker exec -it frappe bash
else
while getopts ':hc:' option; do
echo $option
case "$option" in
h) echo "$usage"
h)
display_usage
exit
;;
c) seed=$OPTARG
temp="docker exec frappe bash -c 'su frappe -c \"bench $OPTARG\"; exec \"${SHELL:-sh}\"'"
exec="true"
c)
docker exec frappe bash -c "bench $OPTARG"
;;
\?)
echo "Invalid option: -$OPTARG" >&2
exit 1
;;
:)
echo "Option -$OPTARG requires an argument." >&2
exit 1
;;
esac
done
if [[ "$exec" == "true" ]]; then
$temp
fi
shift $((OPTIND - 1))
fi