mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 13:55:08 +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
|
||||
done
|
||||
|
||||
if $setup; then
|
||||
if [ $setup == 1 ]; then
|
||||
docker-compose build
|
||||
if $d; then
|
||||
if [ $d == 1 ]; then
|
||||
docker-compose -d
|
||||
else
|
||||
docker-compose
|
||||
|
|
@ -91,7 +91,7 @@ if $setup; then
|
|||
exit 0
|
||||
fi
|
||||
|
||||
if $init; then
|
||||
if [ $init == 1 ]; then
|
||||
if ! $site; then
|
||||
site="site1.local"
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue