This commit is contained in:
Alexandre
2021-12-27 17:37:02 +01:00
parent ae7d6726f9
commit dabddb6986
2 changed files with 9 additions and 3 deletions

View File

@@ -12,7 +12,8 @@
"options": {
"DB_CONNECTION": "sqlite",
"APP_KEY": "CHANGEME_32_CHARS_EuC5dfn3LAPzeO",
"CONFIG_LOCATION": "/config/addons_config/fireflyiii/config.yaml"
"CONFIG_LOCATION": "/config/addons_config/fireflyiii/config.yaml",
"silent": true
},
"ports": {
"8080/tcp": 3473
@@ -28,7 +29,8 @@
"DB_PORT": "str?",
"DB_DATABASE": "str?",
"DB_USERNAME": "str?",
"DB_PASSWORD": "str?"
"DB_PASSWORD": "str?",
"silent": "bool"
},
"slug": "fireflyiii",
"services": ["mysql:want"],

View File

@@ -68,4 +68,8 @@ php artisan firefly-iii:upgrade-database
# LAUNCH APP #
##############
/./usr/local/bin/entrypoint.sh
if bashio::config.true "silent"; then
/./usr/local/bin/entrypoint.sh >/dev/null
else
/./usr/local/bin/entrypoint.sh
fi