diff --git a/extra/templates/mariadb/compose.yaml b/extra/templates/mariadb/compose.yaml new file mode 100644 index 0000000..14aad83 --- /dev/null +++ b/extra/templates/mariadb/compose.yaml @@ -0,0 +1,9 @@ +version: "3.8" +services: + mariadb: + image: mariadb:latest + restart: unless-stopped + ports: + - 3306:3306 + environment: + - MARIADB_ROOT_PASSWORD=123456 diff --git a/frontend/src/components/settings/General.vue b/frontend/src/components/settings/General.vue index 2f1d296..f9cf5c3 100644 --- a/frontend/src/components/settings/General.vue +++ b/frontend/src/components/settings/General.vue @@ -1,8 +1,8 @@