allow setting extra properties

This commit is contained in:
nora 2023-09-05 18:57:15 +02:00
parent 95556e7984
commit d8b5cd9083
3 changed files with 8 additions and 2 deletions

View file

@ -5,8 +5,8 @@ RUN apt-get install -y curl unzip locales
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \
locale-gen
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
RUN useradd -m -s /bin/bash openolat
@ -52,6 +52,7 @@ ENV JRE_HOME /home/openolat/jre
ENV DB_PASSWORD default
ENV DB_URL jdbc:postgresql://localhost:5432/oodb
ENV OLAT_HOST localhost
ENV EXTRA_PROPERTIES none
RUN mkdir -p /home/openolat/conf/Catalina/localhost/
COPY ./ROOT.xml /home/openolat/conf/Catalina/localhost/ROOT.xml