From c5829200ebc526f9e615e293efebd4a008198a25 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 26 Sep 2023 16:09:13 -0700 Subject: [PATCH] Run update.sh --- convertigo/README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/convertigo/README.md b/convertigo/README.md index ff14e3d3b742..18cd8a4d0eb6 100644 --- a/convertigo/README.md +++ b/convertigo/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`8.2.2`, `8.2`, `latest`](https://github.com/convertigo/convertigo/blob/6cfd8957e427702eefefcd2bfe9adc374543b808/docker/default/Dockerfile) +- [`8.2.3`, `8.2`, `latest`](https://github.com/convertigo/convertigo/blob/4f29a87627e16e9961f0795d59ee4540d76a5b3c/docker/default/Dockerfile) # Quick reference (cont.) @@ -238,6 +238,16 @@ $ docker run -d --name C8O -e JAVA_OPTS="-DjvmRoute=server1" -p 28080:28080 conv [Here the list of convertigo specific properties](https://www.convertigo.com/documentation/latest/operating-guide/appendixes/#list-of-convertigo-java-system-properties) (don't forget the `-Dconvertigo.engine.` prefix). +## `LOG_STDOUT` and `LOG_FILE` Environment variables + +Convertigo generates many logs in a **engine.log** file that can be consulted via the Convertigo Administration Console. In some environments, it's easiest to read logs from the container's standard output. Set this property `true` to enable console output. The default value is `false`. + +Log file still exists until you add the `LOG_FILE=false` environment variable : + +```console + docker run -d --name C8O -e LOG_STDOUT=true -e LOG_FILE=false -p 28080:28080 convertigo +``` + ## `JXMX` Environment variable Convertigo tries to allocate this amount of memory in the container and will automatically reduce it until the value is compatible for the Docker memory constraints. Once the best value found, it is used as `-Xmx=${JXMX}m` parameter for the JVM.