-
Notifications
You must be signed in to change notification settings - Fork 97
/
mariadb.json
50 lines (50 loc) · 2.37 KB
/
mariadb.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"MariaDB":{
"containers":{
"linuxserver-mariadb":{
"image":"linuxserver/mariadb",
"launch_order":1,
"ports":{
"3306":{
"description":"MariaDB port. Suggested default: 3306",
"host_default":3306,
"label":"MariaDB port",
"protocol":"tcp",
"ui":false
}
},
"volumes":{
"/config":{
"description":"Choose a share where the database should be stored. Eg: create a share called mariadb-server1 for this purpose alone. ",
"label":"Data Storage"
}
},
"environment":{
"PUID":{
"description":"Enter a valid UID to run MariaDB as. It must have full permissions to the share mapped in the previous step.",
"label":"UID to run MariaDB as.",
"index":1
},
"PGID":{
"description":"Enter a valid GID to use along with the above UID. It (or the above UID) must have full permissions to the share mapped in the previous step.",
"label":"GID to run MariaDB as.",
"index":2
},
"MYSQL_ROOT_PASSWORD":{
"description":"Enter a root password for the MariaDB server (minimum 4 characters).",
"label":"Root password.",
"index":3
}
}
}
},
"description":"MariaDB, relational database management system.<p>Based on a custom docker image: <a href='https://hub.docker.com/r/linuxserver/mariadb' target='_blank'>https://hub.docker.com/r/linuxserver/mariadb</a>, available for amd64 and arm64 architecture.</p>",
"ui":{
"slug":""
},
"volume_add_support":true,
"more_info": "<h4>Important locations</h4><p>Configuration file:<code>/config/custom.cnf</code></p> <p>Databases: <code>/config/databases</code></p> <p>Logs: <code>/config/log/mysql/</code></p>",
"website":"https://hub.docker.com/r/linuxserver/mariadb/",
"version":"1.1"
}
}