This commit is contained in:
Andrew Z 2021-06-10 04:03:20 -04:00
parent 93bcaca6c5
commit 4741219f53
7 changed files with 419 additions and 13 deletions

View File

@ -1,3 +1,3 @@
{
"last_updated_timestamp": 1623304987
"last_updated_timestamp": 1623312197
}

View File

@ -197720,6 +197720,204 @@
"LastUpdateScan": 1622966579,
"FirstSeen": 1609974465
},
{
"Name": "MariaDB-Official",
"Repository": "mariadb",
"Registry": "https://hub.docker.com/_/mariadb",
"Network": "bridge",
"Shell": "sh",
"Privileged": "false",
"Support": "https://forums.unraid.net/topic/110019-support-mariadb-official/",
"Project": "https://mariadb.org/",
"Overview": "Official MariaDB database container. It allows to set a database and username without using the console.\r\n\r\nRoot Password:\r\nThis container creates a random root password on initial execution. Open Docker > MariaDB Icon > Logs > Scroll down to \"GENERATED ROOT PASSWORD\" to find it.\r\n\r\nCreating database dumps\r\ndocker exec MariaDB-Official sh -c 'exec mysqldump --all-databases -uroot -p\"YOUR_ROOT_PASSWORD\"' > /mnt/user/Backups/all-databases.sql\r\n\r\nRestoring data from dump files\r\ndocker exec -i MariaDB-Official sh -c 'exec mysql -uroot -p\"YOUR_ROOT_PASSWORD\"' < /mnt/user/Backups/all-databases.sql",
"WebUI": "",
"TemplateURL": "https://raw.githubusercontent.com/mgutt/unraid-docker-templates/main/mgutt/MariaDB-Official.xml",
"Icon": "https://github.com/mgutt/unraid-docker-templates/raw/main/mgutt/images/mariadb-logo-vert_blue-transparent.png",
"ExtraParams": "--user=99:100 --memory=2G",
"PostArgs": "",
"CPUset": "",
"DonateText": "If you like my work please ",
"DonateLink": "http://paypal.me/marcgutt",
"Networking": {
"Mode": "bridge",
"Publish": {
"Port": {
"HostPort": "3306",
"ContainerPort": "3306",
"Protocol": "tcp"
}
}
},
"Data": {
"Volume": [
{
"HostDir": "/mnt/user/appdata/mariadb-official/data",
"ContainerDir": "/var/lib/mysql",
"Mode": "rw"
},
{
"HostDir": "/mnt/user/appdata/mariadb-official/config",
"ContainerDir": "/etc/mysql/conf.d",
"Mode": "rw"
}
]
},
"Environment": {
"Variable": [
{
"Value": "",
"Name": "MARIADB_RANDOM_ROOT_PASSWORD",
"Mode": ""
},
{
"Value": "dbname_here",
"Name": "MARIADB_DATABASE",
"Mode": ""
},
{
"Value": "dbuser_here",
"Name": "MARIADB_USER",
"Mode": ""
},
{
"Value": "",
"Name": "MARIADB_PASSWORD",
"Mode": ""
},
{
"Value": "",
"Name": "MARIADB_ROOT_PASSWORD",
"Mode": ""
}
]
},
"Config": [
{
"@attributes": {
"Name": "Port",
"Target": "3306",
"Default": "",
"Mode": "tcp",
"Description": "Container Port: 3306",
"Type": "Port",
"Display": "always",
"Required": "true",
"Mask": "false"
},
"value": "3306"
},
{
"@attributes": {
"Name": "Generate Random Password",
"Target": "MARIADB_RANDOM_ROOT_PASSWORD",
"Default": "",
"Mode": "",
"Description": "Set to yes, to generate a random root password. The generated password will be printed to the logs (Docker &gt; MariaDB Icon &gt; Logs).",
"Type": "Variable",
"Display": "always",
"Required": "false",
"Mask": "false"
},
"value": ""
},
{
"@attributes": {
"Name": "Database Name",
"Target": "MARIADB_DATABASE",
"Default": "",
"Mode": "",
"Description": "This variable allows you to specify the name of a database to be created on image startup.",
"Type": "Variable",
"Display": "always",
"Required": "true",
"Mask": "false"
},
"value": "dbname_here"
},
{
"@attributes": {
"Name": "Database User",
"Target": "MARIADB_USER",
"Default": "",
"Mode": "",
"Description": "Container Variable: MARIADB_USER",
"Type": "Variable",
"Display": "always",
"Required": "true",
"Mask": "false"
},
"value": "dbuser_here"
},
{
"@attributes": {
"Name": "Database Password",
"Target": "MARIADB_PASSWORD",
"Default": "",
"Mode": "",
"Description": "Container Variable: MARIADB_PASSWORD",
"Type": "Variable",
"Display": "always",
"Required": "true",
"Mask": "true"
},
"value": "password"
},
{
"@attributes": {
"Name": "Data",
"Target": "/var/lib/mysql",
"Default": "",
"Mode": "rw",
"Description": "Recommened: For better performance replace /mnt/user against /mnt/cache. Note: This requires appdata share caching set to Prefer or Only!",
"Type": "Path",
"Display": "always",
"Required": "true",
"Mask": "false"
},
"value": "/mnt/user/appdata/mariadb-official/data"
},
{
"@attributes": {
"Name": "Config",
"Target": "/etc/mysql/conf.d",
"Default": "",
"Mode": "rw",
"Description": "Container Path: /etc/mysql/conf.d",
"Type": "Path",
"Display": "always-hide",
"Required": "true",
"Mask": "false"
},
"value": "/mnt/user/appdata/mariadb-official/config"
},
{
"@attributes": {
"Name": "Root Password",
"Target": "MARIADB_ROOT_PASSWORD",
"Default": "",
"Mode": "",
"Description": "Generate Random Password must be empty if you like to set your own Root Password!",
"Type": "Variable",
"Display": "always-hide",
"Required": "false",
"Mask": "true"
},
"value": "agsdgasdgafgdfg"
}
],
"Repo": "mgutt's Repository",
"Date": "1623310469",
"OriginalOverview": "Official MariaDB database container. It allows to set a database and username without using the console.\r\n\r\nRoot Password:\r\nThis container creates a random root password on initial execution. Open Docker &gt; MariaDB Icon &gt; Logs &gt; Scroll down to \"GENERATED ROOT PASSWORD\" to find it.\r\n\r\nCreating database dumps\r\ndocker exec MariaDB-Official sh -c 'exec mysqldump --all-databases -uroot -p\"YOUR_ROOT_PASSWORD\"' &gt; /mnt/user/Backups/all-databases.sql\r\n\r\nRestoring data from dump files\r\ndocker exec -i MariaDB-Official sh -c 'exec mysql -uroot -p\"YOUR_ROOT_PASSWORD\"' &lt; /mnt/user/Backups/all-databases.sql",
"Description": "Official MariaDB database container. It allows to set a database and username without using the console.\r\n\r\nRoot Password:\r\nThis container creates a random root password on initial execution. Open Docker > MariaDB Icon > Logs > Scroll down to \"GENERATED ROOT PASSWORD\" to find it.\r\n\r\nCreating database dumps\r\ndocker exec MariaDB-Official sh -c 'exec mysqldump --all-databases -uroot -p\"YOUR_ROOT_PASSWORD\"' > /mnt/user/Backups/all-databases.sql\r\n\r\nRestoring data from dump files\r\ndocker exec -i MariaDB-Official sh -c 'exec mysql -uroot -p\"YOUR_ROOT_PASSWORD\"' < /mnt/user/Backups/all-databases.sql",
"templatePath": "/tmp/GitHub/AppFeed/templates/mguttsRepository/mgutt/MariaDB-Official.xml",
"CategoryList": [
"Tools-Utilities",
"Other",
"Network-Other"
],
"LastUpdateScan": 1623312197,
"FirstSeen": 1623312197
},
{
"Name": "wger-unraid",
"Repository": "aronwk/wger:latest",
@ -203034,8 +203232,8 @@
"CategoryList": [
"Productivity"
],
"downloads": 5813,
"LastUpdateScan": 1620712971,
"downloads": 7241,
"LastUpdateScan": 1623312197,
"FirstSeen": 1612919463
},
{

View File

@ -1,7 +1,7 @@
{
"apps": 1281,
"last_updated_timestamp": 1623304987,
"last_updated": "2021-06-10 02:03",
"apps": 1282,
"last_updated_timestamp": 1623312197,
"last_updated": "2021-06-10 04:03",
"categories": [
{
"Cat": "Backup:",
@ -197882,6 +197882,204 @@
"LastUpdateScan": 1622966579,
"FirstSeen": 1609974465
},
{
"Name": "MariaDB-Official",
"Repository": "mariadb",
"Registry": "https://hub.docker.com/_/mariadb",
"Network": "bridge",
"Shell": "sh",
"Privileged": "false",
"Support": "https://forums.unraid.net/topic/110019-support-mariadb-official/",
"Project": "https://mariadb.org/",
"Overview": "Official MariaDB database container. It allows to set a database and username without using the console.\r\n\r\nRoot Password:\r\nThis container creates a random root password on initial execution. Open Docker > MariaDB Icon > Logs > Scroll down to \"GENERATED ROOT PASSWORD\" to find it.\r\n\r\nCreating database dumps\r\ndocker exec MariaDB-Official sh -c 'exec mysqldump --all-databases -uroot -p\"YOUR_ROOT_PASSWORD\"' > /mnt/user/Backups/all-databases.sql\r\n\r\nRestoring data from dump files\r\ndocker exec -i MariaDB-Official sh -c 'exec mysql -uroot -p\"YOUR_ROOT_PASSWORD\"' < /mnt/user/Backups/all-databases.sql",
"WebUI": "",
"TemplateURL": "https://raw.githubusercontent.com/mgutt/unraid-docker-templates/main/mgutt/MariaDB-Official.xml",
"Icon": "https://github.com/mgutt/unraid-docker-templates/raw/main/mgutt/images/mariadb-logo-vert_blue-transparent.png",
"ExtraParams": "--user=99:100 --memory=2G",
"PostArgs": "",
"CPUset": "",
"DonateText": "If you like my work please ",
"DonateLink": "http://paypal.me/marcgutt",
"Networking": {
"Mode": "bridge",
"Publish": {
"Port": {
"HostPort": "3306",
"ContainerPort": "3306",
"Protocol": "tcp"
}
}
},
"Data": {
"Volume": [
{
"HostDir": "/mnt/user/appdata/mariadb-official/data",
"ContainerDir": "/var/lib/mysql",
"Mode": "rw"
},
{
"HostDir": "/mnt/user/appdata/mariadb-official/config",
"ContainerDir": "/etc/mysql/conf.d",
"Mode": "rw"
}
]
},
"Environment": {
"Variable": [
{
"Value": "",
"Name": "MARIADB_RANDOM_ROOT_PASSWORD",
"Mode": ""
},
{
"Value": "dbname_here",
"Name": "MARIADB_DATABASE",
"Mode": ""
},
{
"Value": "dbuser_here",
"Name": "MARIADB_USER",
"Mode": ""
},
{
"Value": "",
"Name": "MARIADB_PASSWORD",
"Mode": ""
},
{
"Value": "",
"Name": "MARIADB_ROOT_PASSWORD",
"Mode": ""
}
]
},
"Config": [
{
"@attributes": {
"Name": "Port",
"Target": "3306",
"Default": "",
"Mode": "tcp",
"Description": "Container Port: 3306",
"Type": "Port",
"Display": "always",
"Required": "true",
"Mask": "false"
},
"value": "3306"
},
{
"@attributes": {
"Name": "Generate Random Password",
"Target": "MARIADB_RANDOM_ROOT_PASSWORD",
"Default": "",
"Mode": "",
"Description": "Set to yes, to generate a random root password. The generated password will be printed to the logs (Docker &gt; MariaDB Icon &gt; Logs).",
"Type": "Variable",
"Display": "always",
"Required": "false",
"Mask": "false"
},
"value": ""
},
{
"@attributes": {
"Name": "Database Name",
"Target": "MARIADB_DATABASE",
"Default": "",
"Mode": "",
"Description": "This variable allows you to specify the name of a database to be created on image startup.",
"Type": "Variable",
"Display": "always",
"Required": "true",
"Mask": "false"
},
"value": "dbname_here"
},
{
"@attributes": {
"Name": "Database User",
"Target": "MARIADB_USER",
"Default": "",
"Mode": "",
"Description": "Container Variable: MARIADB_USER",
"Type": "Variable",
"Display": "always",
"Required": "true",
"Mask": "false"
},
"value": "dbuser_here"
},
{
"@attributes": {
"Name": "Database Password",
"Target": "MARIADB_PASSWORD",
"Default": "",
"Mode": "",
"Description": "Container Variable: MARIADB_PASSWORD",
"Type": "Variable",
"Display": "always",
"Required": "true",
"Mask": "true"
},
"value": "password"
},
{
"@attributes": {
"Name": "Data",
"Target": "/var/lib/mysql",
"Default": "",
"Mode": "rw",
"Description": "Recommened: For better performance replace /mnt/user against /mnt/cache. Note: This requires appdata share caching set to Prefer or Only!",
"Type": "Path",
"Display": "always",
"Required": "true",
"Mask": "false"
},
"value": "/mnt/user/appdata/mariadb-official/data"
},
{
"@attributes": {
"Name": "Config",
"Target": "/etc/mysql/conf.d",
"Default": "",
"Mode": "rw",
"Description": "Container Path: /etc/mysql/conf.d",
"Type": "Path",
"Display": "always-hide",
"Required": "true",
"Mask": "false"
},
"value": "/mnt/user/appdata/mariadb-official/config"
},
{
"@attributes": {
"Name": "Root Password",
"Target": "MARIADB_ROOT_PASSWORD",
"Default": "",
"Mode": "",
"Description": "Generate Random Password must be empty if you like to set your own Root Password!",
"Type": "Variable",
"Display": "always-hide",
"Required": "false",
"Mask": "true"
},
"value": "agsdgasdgafgdfg"
}
],
"Repo": "mgutt's Repository",
"Date": "1623310469",
"OriginalOverview": "Official MariaDB database container. It allows to set a database and username without using the console.\r\n\r\nRoot Password:\r\nThis container creates a random root password on initial execution. Open Docker &gt; MariaDB Icon &gt; Logs &gt; Scroll down to \"GENERATED ROOT PASSWORD\" to find it.\r\n\r\nCreating database dumps\r\ndocker exec MariaDB-Official sh -c 'exec mysqldump --all-databases -uroot -p\"YOUR_ROOT_PASSWORD\"' &gt; /mnt/user/Backups/all-databases.sql\r\n\r\nRestoring data from dump files\r\ndocker exec -i MariaDB-Official sh -c 'exec mysql -uroot -p\"YOUR_ROOT_PASSWORD\"' &lt; /mnt/user/Backups/all-databases.sql",
"Description": "Official MariaDB database container. It allows to set a database and username without using the console.\r\n\r\nRoot Password:\r\nThis container creates a random root password on initial execution. Open Docker > MariaDB Icon > Logs > Scroll down to \"GENERATED ROOT PASSWORD\" to find it.\r\n\r\nCreating database dumps\r\ndocker exec MariaDB-Official sh -c 'exec mysqldump --all-databases -uroot -p\"YOUR_ROOT_PASSWORD\"' > /mnt/user/Backups/all-databases.sql\r\n\r\nRestoring data from dump files\r\ndocker exec -i MariaDB-Official sh -c 'exec mysql -uroot -p\"YOUR_ROOT_PASSWORD\"' < /mnt/user/Backups/all-databases.sql",
"templatePath": "/tmp/GitHub/AppFeed/templates/mguttsRepository/mgutt/MariaDB-Official.xml",
"CategoryList": [
"Tools-Utilities",
"Other",
"Network-Other"
],
"LastUpdateScan": 1623312197,
"FirstSeen": 1623312197
},
{
"Name": "wger-unraid",
"Repository": "aronwk/wger:latest",
@ -203196,8 +203394,8 @@
"CategoryList": [
"Productivity"
],
"downloads": 5813,
"LastUpdateScan": 1620712971,
"downloads": 7241,
"LastUpdateScan": 1623312197,
"FirstSeen": 1612919463
},
{

View File

@ -1628,5 +1628,6 @@
"ghcr.io/linuxserver/xbackbone/": 1623045781,
"ghcr.io/linuxserver/xbackbone": 1623081789,
"pawelmalak/flame": 1623157932,
"signtools/ios-signer-service": 1623157933
"signtools/ios-signer-service": 1623157933,
"mariadb": 1623312197
}

View File

@ -1 +1 @@
490
539

View File

@ -161849,7 +161849,6 @@
"Tools-System",
"Plugins"
],
"LastUpdateScan": 1623297796,
"FirstSeen": 1579129604
},
{

View File

@ -45171,9 +45171,9 @@
},
"hikariai/nvim-server:latest": {
"Base": null,
"Downloads": 5813,
"Downloads": 7241,
"Stars": null,
"Time": 1620712971,
"Time": 1623312197,
"trending": null,
"trends": null,
"downloadtrend": null,
@ -47442,5 +47442,15 @@
"trends": null,
"downloadtrend": null,
"trendsDate": null
},
"mariadb": {
"Base": null,
"Downloads": null,
"Stars": null,
"Time": 1623312197,
"trending": null,
"trends": null,
"downloadtrend": null,
"trendsDate": null
}
}