Content
Default language not applied
Added by Little Miss Sunshine 8 days ago
Hi everyone
I am totally new to OpenProject and struggle with some Docker Compose settings. Specifically with the default language settings I try to change to de.
Not sure if I am missing something or doing it wrong.
These are the commands I run.
git clone https://github.com/opf/openproject-docker-compose.git --depth=1 --branch=stable/17 openproject && cd openproject
sudo mkdir -p /var/openproject/assets && sudo chown 1000:1000 -R /var/openproject/assets
nano openproject/.env
nano openproject/docker-compose.override.yml
sudo OPENPROJECT_HTTPS=false OPENPROJECT_HOST__NAME=10.0.60.100 docker compose up --build --pull always
the .env file contains the following:
##
# All environment variables defined here will only apply if you pass them
# to the OpenProject container in docker-compose.yml under x-op-app -> environment.
# For the examples here this is already the case.
#
# Please refer to our documentation to see all possible variables:
# https://www.openproject.org/docs/installation-and-operations/configuration/environment/
TAG=17-slim
OPENPROJECT_HTTPS=true
SECRET_KEY_BASE=redacted
OPENPROJECT_HOST__NAME=redactec.com
PORT=8080
OPENPROJECT_RAILS__RELATIVE__URL__ROOT=
IMAP_ENABLED=false
DATABASE_URL=postgres://postgres:p4ssw0rd@db/openproject?pool=20&encoding=unicode&reconnect=true
RAILS_MIN_THREADS=4
RAILS_MAX_THREADS=16
PGDATA="/var/lib/postgresql/data"
OPDATA="/var/openproject/assets"
COLLABORATIVE_SERVER_URL=ws://localhost:8080/hocuspocus
COLLABORATIVE_SERVER_SECRET=secret12345
POSTGRES_VERSION=17 # Note for existing setups: make sure this is the same version you are using right now, or upgrade your database
and the docker-compose.override.yml
x-op-app:
environment:
OPENPROJECT_DEFAULT__LANGUAGE: "de"
EMAIL_DELIVERY_METHOD: "smtp"
SMTP_ADDRESS: "smtp-mail.outlook.com"
SMTP_PORT: "587"
SMTP_DOMAIN: "redacted"
SMTP_AUTHENTICATION: "login"
SMTP_USER_NAME: "mail@redacted"
SMTP_PASSWORD: "redacted"
SMTP_ENABLE_STARTTLS_AUTO: "true"
but when I go to the system settings, the default language is still english.