-
Notifications
You must be signed in to change notification settings - Fork 41
Open
Labels
Description
Hi,
I've tried setting the env var LANGUAGE to de and restarted the docke container, but nothing happens. The displayed language is still en. I also tried with various other values (as listed in https://github.com/daledavies/jump/tree/main/jumpapp/translations) but no luck so far.
Config as follows:
version: '3'
services:
jump:
image: daledavies/jump:v1.3.2
container_name: jump
restart: always
ports:
- "8080:8080"
volumes:
- /mnt/data/jump/backgrounds:/backgrounds
- /mnt/data/jump/favicon:/favicon
- /mnt/data/jump/search:/search
- /mnt/data/jump/sites:/sites
environment:
LANGUAGE: 'de'Debug from within container:
$ docker compose exec jump sh
$ env | grep -i lang
LANGUAGE=deIs there anything that I'm missing or isn't it working properly?
Reactions are currently unavailable