MariaDB: switch to different external port and adjust documentation

This commit is contained in:
Igor Pecovnik
2025-07-16 15:46:58 +02:00
committed by Igor
parent 3258a1cb2f
commit 6bffeaaa48
4 changed files with 8 additions and 5 deletions

View File

@@ -6,7 +6,7 @@
- create normal user
- create password for normal user
- Database host: `<your.IP>`
- Database host: `<your.IP>:3307`
=== "Directories"

View File

@@ -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

View File

@@ -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)" \

View File

@@ -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