From 70d494798cb006f054a3de83039fb5f5cc7562ee Mon Sep 17 00:00:00 2001 From: Athou Date: Sun, 18 Aug 2024 09:45:44 +0200 Subject: [PATCH] Docker readme tweaks --- commafeed-server/src/main/docker/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commafeed-server/src/main/docker/README.md b/commafeed-server/src/main/docker/README.md index 5f7ed37d..969235f7 100644 --- a/commafeed-server/src/main/docker/README.md +++ b/commafeed-server/src/main/docker/README.md @@ -29,7 +29,7 @@ services: ## Advanced -While using the embedded database is perfectly fine for small instances, you may want to have more control over the +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 different docker tag): ``` @@ -70,14 +70,14 @@ with the `COMMAFEED_FEED_REFRESH_INTERVAL_EMPIRICAL=true` variable. When logging in, credentials are stored in an encrypted cookie. The encryption key is randomly generated at startup, meaning that you will have to log back in after each restart of the application. To prevent this, you can set the -`QUARKUS_HTTP_AUTH_SESSION_ENCRYPTION_KEY` property to a fixed value (min. 16 characters). +`QUARKUS_HTTP_AUTH_SESSION_ENCRYPTION_KEY` variable to a fixed value (min. 16 characters). ## Docker tags Tags are of the form `-[-jvm]` where: - `` is either: - - a specific CommaFeed version (e.g. `4.6.0`) + - a specific CommaFeed version (e.g. `5.0.0`) - `latest` (always points to the latest version) - `master` (always points to the latest git commit) - `` is the database to use (`h2`, `postgresql`, `mysql` or `mariadb`)