mirror of https://github.com/akaunting/docker.git
Added missing port variable in the entrypoint scripts (#62)
This commit is contained in:
parent
54bbeaf4b9
commit
d38a61df23
|
@ -9,6 +9,7 @@ if [ "$AKAUNTING_SETUP" == "true" ]; then
|
|||
while sleep $retry_interval; do
|
||||
if php artisan install \
|
||||
--db-host=$DB_HOST \
|
||||
--db-port=$DB_PORT \
|
||||
--db-name=$DB_DATABASE \
|
||||
--db-username=$DB_USERNAME \
|
||||
"--db-password=$DB_PASSWORD" \
|
||||
|
|
|
@ -30,6 +30,7 @@ if [ "$do_setup" -o "$AKAUNTING_SETUP" == "true" ]; then
|
|||
while sleep $retry_interval; do
|
||||
if php artisan install \
|
||||
--db-host=$DB_HOST \
|
||||
--db-port=$DB_PORT \
|
||||
--db-name=$DB_DATABASE \
|
||||
--db-username=$DB_USERNAME \
|
||||
"--db-password=$DB_PASSWORD" \
|
||||
|
|
|
@ -30,6 +30,7 @@ if [ "$do_setup" -o "$AKAUNTING_SETUP" == "true" ]; then
|
|||
while sleep $retry_interval; do
|
||||
if php artisan install \
|
||||
--db-host=$DB_HOST \
|
||||
--db-port=$DB_PORT \
|
||||
--db-name=$DB_DATABASE \
|
||||
--db-username=$DB_USERNAME \
|
||||
"--db-password=$DB_PASSWORD" \
|
||||
|
|
|
@ -32,6 +32,7 @@ if [ "$do_setup" -o "$AKAUNTING_SETUP" == "true" ]; then
|
|||
while sleep $retry_interval; do
|
||||
if php artisan install \
|
||||
--db-host=$DB_HOST \
|
||||
--db-port=$DB_PORT \
|
||||
--db-name=$DB_DATABASE \
|
||||
--db-username=$DB_USERNAME \
|
||||
"--db-password=$DB_PASSWORD" \
|
||||
|
|
Loading…
Reference in New Issue