We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 256c2ad commit 89feaebCopy full SHA for 89feaeb
inject.sh
@@ -41,6 +41,12 @@ elif [ "$DB_PASSWORD_FILE" != '' ]; then
41
value=$(<$DB_PASSWORD_FILE)
42
sed -i "s|DB_PASSWORD=.*|DB_PASSWORD=${value}|i" /conf/.env
43
fi
44
+if [ "$DB_LOG_SQL" != '' ]; then
45
+ sed -i "s|DB_LOG_SQL=.*|DB_LOG_SQL=${DB_LOG_SQL}|i" /conf/.env
46
+fi
47
+if [ "$DB_LOG_SQL_EXPLAIN" != '' ]; then
48
+ sed -i "s|DB_LOG_SQL_EXPLAIN=.*|DB_LOG_SQL_EXPLAIN=${DB_LOG_SQL_EXPLAIN}|i" /conf/.env
49
50
if [ "$TIMEZONE" != '' ]; then
51
sed -i "s|TIMEZONE=.*|TIMEZONE=${TIMEZONE}|i" /conf/.env
52
0 commit comments