mirror of
https://github.com/armbian/configng.git
synced 2026-01-06 10:37:41 -08:00
MariaDB: switch to different external port and adjust documentation
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
- create normal user
|
||||
- create password for normal user
|
||||
|
||||
- Database host: `<your.IP>`
|
||||
- Database host: `<your.IP>:3307`
|
||||
|
||||
=== "Directories"
|
||||
|
||||
|
||||
@@ -1 +1,4 @@
|
||||
Mariadb is one of the most popular database servers. Made by the original developers of MySQL.
|
||||
**MariaDB** is a fast, open-source relational database server developed by the original creators of MySQL. It is designed to be fully compatible with MySQL while offering improved performance, enhanced security, and additional features.
|
||||
|
||||
MariaDB supports a wide range of storage engines, advanced SQL capabilities, and both single-node and clustered deployments. It is widely used in web, cloud, and
|
||||
|
||||
|
||||
@@ -48,7 +48,7 @@ function module_jellyfin () {
|
||||
docker run -d \
|
||||
--name=jellyfin \
|
||||
--net=lsio \
|
||||
${hwacc} \
|
||||
${hwacc} \
|
||||
-e PUID=1000 \
|
||||
-e PGID=1000 \
|
||||
-e TZ="$(cat /etc/timezone)" \
|
||||
|
||||
@@ -7,7 +7,7 @@ module_options+=(
|
||||
["module_mariadb,status"]="Active"
|
||||
["module_mariadb,doc_link"]="https://mariadb.org/documentation/"
|
||||
["module_mariadb,group"]="Database"
|
||||
["module_mariadb,port"]="3306"
|
||||
["module_mariadb,port"]="3307"
|
||||
["module_mariadb,arch"]="x86-64 arm64"
|
||||
)
|
||||
#
|
||||
@@ -47,7 +47,7 @@ function module_mariadb () {
|
||||
-e "MYSQL_DATABASE=${MYSQL_DATABASE}" \
|
||||
-e "MYSQL_USER=${MYSQL_USER}" \
|
||||
-e "MYSQL_PASSWORD=${MYSQL_PASSWORD}" \
|
||||
-p 3306:3306 \
|
||||
-p ${module_options["module_mariadb,port"]}:3306 \
|
||||
-v "${MARIADB_BASE}/config:/config" \
|
||||
--restart unless-stopped \
|
||||
lscr.io/linuxserver/mariadb:latest
|
||||
|
||||
Reference in New Issue
Block a user