blob: c6d6df551bb5cd479f95434bb06e1b12a019c2c1 [file]
#!/usr/bin/env bash
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. The ASF licenses this file to You
# under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License. For additional information regarding
# copyright in this work, please see the NOTICE file in the top level
# directory of this distribution.
cat > /usr/local/tomcat/lib/roller-custom.properties << EOF
installation.type=auto
mediafiles.storage.dir=${STORAGE_ROOT}/roller_mediafiles
search.index.dir=${STORAGE_ROOT}/roller_searchindex
log4j.appender.roller.File=/usr/local/tomcat/logs/roller.log
database.configurationType=jdbc
database.jdbc.driverClass=${DATABASE_JDBC_DRIVERCLASS}
database.jdbc.connectionURL=${DATABASE_JDBC_CONNECTIONURL}
database.jdbc.username=${DATABASE_JDBC_USERNAME}
database.jdbc.password=${DATABASE_JDBC_PASSWORD}
authentication.method=${AUTHENTICATION_METHOD:-db}
EOF
# Register an OIDC provider only when one is configured. The issuer must be
# reachable under the same URL from both this container and the browser,
# because the browser is redirected to the endpoints Roller discovers here.
if [ -n "${OIDC_ISSUER_URI}" ]; then
cat >> /usr/local/tomcat/lib/roller-custom.properties << EOF
oidc.${OIDC_PROVIDER_ID:-keycloak}.client-id=${OIDC_CLIENT_ID}
oidc.${OIDC_PROVIDER_ID:-keycloak}.client-secret=${OIDC_CLIENT_SECRET}
oidc.${OIDC_PROVIDER_ID:-keycloak}.issuer-uri=${OIDC_ISSUER_URI}
oidc.${OIDC_PROVIDER_ID:-keycloak}.client-name=${OIDC_CLIENT_NAME:-Keycloak}
users.oidc.autoProvision.enabled=${OIDC_AUTO_PROVISION:-true}
EOF
fi
/usr/local/tomcat/bin/wait-for-it.sh ${DATABASE_HOST}
exec /usr/local/tomcat/bin/catalina.sh run