diff options
| author | 2019-08-17 13:07:30 +0200 | |
|---|---|---|
| committer | 2019-08-17 13:07:30 +0200 | |
| commit | 38a4b22f7bb2eb51c5224d2a340e199d6a280797 (patch) | |
| tree | eaff83c9e803a060bd88095eda1a1eae4f24600d /Docker | |
| parent | 544fcc4500df0808aba190f26d7b185ffe1f0f53 (diff) | |
Doc MariaDB (#2494)
Diffstat (limited to 'Docker')
| -rw-r--r-- | Docker/README.md | 6 |
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 \ |
