From f66b2c068f4af9216f10dd7e6ef964bdf87c2c5e Mon Sep 17 00:00:00 2001 From: Simran Spiller Date: Tue, 1 Jul 2025 10:07:36 +0200 Subject: [PATCH] ArangoDB: Revert server language change --- arangodb/content.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/arangodb/content.md b/arangodb/content.md index 2cc2b4a20..12eb65693 100644 --- a/arangodb/content.md +++ b/arangodb/content.md @@ -49,9 +49,7 @@ docker inspect --format '{{ .NetworkSettings.IPAddress }}' arangodb-instance When using Docker, you need to specify the language you want to initialize the server to on the first run in one of the following ways: -- From v3.12.2 onward: Append the `--icu-language` startup option to the end of the Docker command, like `docker run ... %%IMAGE%% --icu-language sv` for a Swedish locale. - -- Set the environment variable `LANG` to a locale in the `docker run` command, e.g. `-e LANG=sv`. +- Set the environment variable `LANG` to a locale in the `docker run` command, e.g. `-e LANG=sv` for a Swedish locale. - Use an `arangod.conf` configuration file that sets a language and mount it into the container. For example, create a configuration file on your host system in which you set `icu-language = sv` at the top (before any `[section]`) and then mount the file over the default configuration file like `docker run -v /your-host-path/arangod.conf:/etc/arangodb3/arangod.conf ...`.