mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-21 23:35:09 +00:00
this should work
This commit is contained in:
parent
4acb2cb6ca
commit
6013270c23
1 changed files with 3 additions and 3 deletions
6
dbench
6
dbench
|
|
@ -81,9 +81,9 @@ while true; do
|
||||||
shift
|
shift
|
||||||
done
|
done
|
||||||
|
|
||||||
if $setup; then
|
if [ $setup == 1 ]; then
|
||||||
docker-compose build
|
docker-compose build
|
||||||
if $d; then
|
if [ $d == 1 ]; then
|
||||||
docker-compose -d
|
docker-compose -d
|
||||||
else
|
else
|
||||||
docker-compose
|
docker-compose
|
||||||
|
|
@ -91,7 +91,7 @@ if $setup; then
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if $init; then
|
if [ $init == 1 ]; then
|
||||||
if ! $site; then
|
if ! $site; then
|
||||||
site="site1.local"
|
site="site1.local"
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue