Skip to content

Commit 6bffeaa

Browse files
committed
MariaDB: switch to different external port and adjust documentation
1 parent 3258a1c commit 6bffeaa

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

tools/include/markdown/DAT001-footer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
- create normal user
77
- create password for normal user
88

9-
- Database host: `<your.IP>`
9+
- Database host: `<your.IP>:3307`
1010

1111
=== "Directories"
1212

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
Mariadb is one of the most popular database servers. Made by the original developers of MySQL.
1+
**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.
2+
3+
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
4+

tools/modules/software/module_jellyfin.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function module_jellyfin () {
4848
docker run -d \
4949
--name=jellyfin \
5050
--net=lsio \
51-
${hwacc} \
51+
${hwacc} \
5252
-e PUID=1000 \
5353
-e PGID=1000 \
5454
-e TZ="$(cat /etc/timezone)" \

tools/modules/software/module_mariadb.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module_options+=(
77
["module_mariadb,status"]="Active"
88
["module_mariadb,doc_link"]="https://mariadb.org/documentation/"
99
["module_mariadb,group"]="Database"
10-
["module_mariadb,port"]="3306"
10+
["module_mariadb,port"]="3307"
1111
["module_mariadb,arch"]="x86-64 arm64"
1212
)
1313
#
@@ -47,7 +47,7 @@ function module_mariadb () {
4747
-e "MYSQL_DATABASE=${MYSQL_DATABASE}" \
4848
-e "MYSQL_USER=${MYSQL_USER}" \
4949
-e "MYSQL_PASSWORD=${MYSQL_PASSWORD}" \
50-
-p 3306:3306 \
50+
-p ${module_options["module_mariadb,port"]}:3306 \
5151
-v "${MARIADB_BASE}/config:/config" \
5252
--restart unless-stopped \
5353
lscr.io/linuxserver/mariadb:latest

0 commit comments

Comments
 (0)