From 4a4fbcf66010995515eda959d59480fdd81fbbc2 Mon Sep 17 00:00:00 2001 From: "Junior L. Botelho (JLB)" Date: Sat, 18 Feb 2023 14:20:23 -0300 Subject: [PATCH] refactor: add info about WIKIPEDIA environment to docker readme --- docker/README.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/docker/README.md b/docker/README.md index adc3b97..d752271 100644 --- a/docker/README.md +++ b/docker/README.md @@ -23,12 +23,14 @@ Dockerized Librex is a way to provide users with yet another way to self-host th To run librex in a docker container, you can simply use the command: ```sh -docker run -d --name librex \ - -e TZ="America/New_York" \ - -e CONFIG_GOOGLE_DOMAIN="com" \ - -e CONFIG_GOOGLE_LANGUAGE="en" \ - -p 8080:8080 \ - librex/librex:latest +docker run -d \ + --name librex \ + -e TZ="America/New_York" \ + -e CONFIG_GOOGLE_DOMAIN="com" \ + -e CONFIG_GOOGLE_LANGUAGE="en" \ + -e CONFIG_WIKIPEDIA_LANGUAGE="en" \ + -p 8080:8080 \ + librex/librex:latest ```