diff --git a/README.md b/README.md index b7efbf9..42336d7 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,7 @@ $ docker run -d -p "8080:80" -v "${PWD}/templates.json:/usr/share/nginx/html/tem * Nginx (based on `nginx:latest`) * Httpd (based on `httpd:latest`) * MySQL (based on `mysql:latest`) +* MariaDB (based on `mariadb:latest`) * PostgreSQL (based on `postgres:latest`) * Mongo (based on `mongo:latest`) * Elasticsearch (based on `elasticsearch:latest`) diff --git a/templates.json b/templates.json index 399d396..7d98a55 100644 --- a/templates.json +++ b/templates.json @@ -43,6 +43,22 @@ ], "volumes": ["/var/lib/mysql"] }, + { + "title": "MariaDB", + "description": "Performance beyond MySQL", + "logo": "https://hub.docker.com/public/images/official/mariadb.png", + "image": "mariadb:latest", + "env": [ + { + "name": "MYSQL_ROOT_PASSWORD", + "label": "Root password" + } + ], + "ports": [ + "3306/tcp" + ], + "volumes": ["/var/lib/mysql"] + }, { "title": "PostgreSQL", "description": "The most advanced open-source database",