aboutsummaryrefslogtreecommitdiff
path: root/Docker
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2019-08-17 13:07:30 +0200
committerGravatar GitHub <noreply@github.com> 2019-08-17 13:07:30 +0200
commit38a4b22f7bb2eb51c5224d2a340e199d6a280797 (patch)
treeeaff83c9e803a060bd88095eda1a1eae4f24600d /Docker
parent544fcc4500df0808aba190f26d7b185ffe1f0f53 (diff)
Doc MariaDB (#2494)
Diffstat (limited to 'Docker')
-rw-r--r--Docker/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/Docker/README.md b/Docker/README.md
index 527a0e83b..32024c829 100644
--- a/Docker/README.md
+++ b/Docker/README.md
@@ -79,16 +79,16 @@ docker run -d --restart unless-stopped --log-opt max-size=10m \
This already works with a built-in **SQLite** database (easiest), but more powerful databases are supported:
-### [MySQL](https://hub.docker.com/_/mysql/)
+### [MySQL](https://hub.docker.com/_/mysql/) or [MariaDB](https://hub.docker.com/_/mariadb)
```sh
-# If you already have a MySQL instance running, just attach it to the FreshRSS network:
+# If you already have a MySQL or MariaDB instance running, just attach it to the FreshRSS network:
docker network connect freshrss-network mysql
# Otherwise, start a new MySQL instance, remembering to change the passwords:
docker volume create mysql-data
docker run -d --restart unless-stopped --log-opt max-size=10m \
-v mysql-data:/var/lib/mysql \
- -e MYSQL_ROOT_PASSWORD=rootpass
+ -e MYSQL_ROOT_PASSWORD=rootpass \
-e MYSQL_DATABASE=freshrss \
-e MYSQL_USER=freshrss \
-e MYSQL_PASSWORD=pass \