refactor: add info about WIKIPEDIA environment to docker readme

This commit is contained in:
Junior L. Botelho (JLB) 2023-02-18 14:20:23 -03:00
parent 0208b8f738
commit 4a4fbcf660
No known key found for this signature in database
GPG Key ID: 6A25840754F2A524
1 changed files with 8 additions and 6 deletions

View File

@ -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
```
<br>