From 6c4f5107d07e28a43ae78597c79e8e33d8cf83ea Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 28 Aug 2021 20:36:15 +0200 Subject: [PATCH] Update run.sh --- joplin/rootfs/run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/joplin/rootfs/run.sh b/joplin/rootfs/run.sh index 1527e2acc..5564a9a21 100644 --- a/joplin/rootfs/run.sh +++ b/joplin/rootfs/run.sh @@ -46,13 +46,13 @@ fi ############## # Configure app -bashio::config.has_value 'DB_CLIENT' && export DB_CLIENT=$(bashio::config 'DB_CLIENT') +bashio::config.has_value 'DB_CLIENT' && export DB_CLIENT=$(bashio::config 'DB_CLIENT') && bashio::log.info 'Custom database set' bashio::config.has_value 'POSTGRES_PASSWORD' && export POSTGRES_PASSWORD=$(bashio::config 'POSTGRES_PASSWORD') bashio::config.has_value 'POSTGRES_USER' && export POSTGRES_USER=$(bashio::config 'POSTGRES_USER') bashio::config.has_value 'POSTGRES_PORT' && export POSTGRES_PORT=$(bashio::config 'POSTGRES_PORT') bashio::config.has_value 'POSTGRES_HOST' && export POSTGRES_HOST=$(bashio::config 'POSTGRES_HOST') export APP_BASE_URL=$(bashio::config 'APP_BASE_URL') -bashio::log.info 'Starting Joplin. Default user is "admin@localhost" with password "admin"' +bashio::log.info 'Starting Joplin. Initial user is "admin@localhost" with password "admin"' npm --prefix packages/server start