File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
phpmyadmin/rootfs/etc/s6-overlay/s6-rc.d/init-phpmyadmin Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "todo-tree.tree.scanMode" : " workspace"
3+ }
Original file line number Diff line number Diff line change @@ -24,17 +24,19 @@ port=$(bashio::services "mysql" "port")
2424username=$(bashio::services "mysql" "username")
2525
2626database=$(\
27- mysql \
27+ mariadb \
2828 -u "${username}" -p"${password}" \
2929 -h "${host}" -P "${port}" \
3030 --skip-column-names \
31+ --skip-ssl \
3132 -e "SHOW DATABASES LIKE 'phpmyadmin';"
3233)
3334
3435if ! bashio::var.has_value "${database}"; then
3536 bashio::log.info "Creating database for phpMyAdmin"
36- mysql \
37+ mariadb \
3738 -u "${username}" -p"${password}" \
3839 -h "${host}" -P "${port}" \
40+ --skip-ssl \
3941 < /var/www/phpmyadmin/sql/create_tables.sql
4042fi
You can’t perform that action at this time.
0 commit comments