diff --git a/commafeed-server/src/main/docker/README.md b/commafeed-server/src/main/docker/README.md index 756fd45d..947a9cfd 100644 --- a/commafeed-server/src/main/docker/README.md +++ b/commafeed-server/src/main/docker/README.md @@ -30,7 +30,7 @@ services: ## Advanced While using the H2 embedded database is perfectly fine for small instances, you may want to have more control over the -database. Here's an example that uses postgresql (note the image tag change from `latest-h2` to `latest-postgresql`): +database. Here's an example that uses PostgreSQL (note the image tag change from `latest-h2` to `latest-postgresql`): ``` services: @@ -59,6 +59,13 @@ services: - /path/to/commafeed/db:/var/lib/postgresql/data ``` +CommaFeed also supports: + +- MySQL: + `QUARKUS_DATASOURCE_JDBC_URL=jdbc:mysql://localhost/commafeed?autoReconnect=true&failOverReadOnly=false&maxReconnects=20&rewriteBatchedStatements=true&timezone=UTC` +- MariaDB: + `QUARKUS_DATASOURCE_JDBC_URL=jdbc:mariadb://localhost/commafeed?autoReconnect=true&failOverReadOnly=false&maxReconnects=20&rewriteBatchedStatements=true&timezone=UTC` + ## Configuration All [CommaFeed settings](https://github.com/Athou/commafeed/blob/master/commafeed-server/doc/commafeed.adoc) are