-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from citelibre/ft_keycloak_mariadb
Merge Ft keycloak mariadb
- Loading branch information
Showing
139 changed files
with
940 additions
and
8,455 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,43 @@ | ||
FROM tomcat:9.0-jdk11 | ||
|
||
RUN apt update && apt install -y haproxy | ||
|
||
ARG site=site-citelibre-rendezvous-1.0.9 | ||
|
||
ARG tomcat=/usr/local/tomcat | ||
WORKDIR ${tomcat} | ||
COPY target/${site}.war webapps | ||
COPY haproxy.cfg /etc/haproxy/haproxy.cfg | ||
|
||
RUN cd webapps && mkdir rendezvous && mv ${site}.war rendezvous/rendezvous.war && cd rendezvous && jar xvf rendezvous.war && rm rendezvous.war | ||
|
||
COPY webapp/WEB-INF webapps/rendezvous/WEB-INF/ | ||
|
||
|
||
|
||
COPY entrypoint.sh /entrypoint.sh | ||
|
||
COPY wait /wait | ||
|
||
RUN chmod +x /wait | ||
RUN chmod +x /entrypoint.sh | ||
RUN apt -y install haproxy | ||
ENV LUTECE_DB_HOST= | ||
ENV LUTECE_DB_PORT= | ||
ENV LUTECE_DB_NAME= | ||
ENV LUTECE_DB_USER= | ||
ENV LUTECE_DB_PWD= | ||
ENV LUTECE_MAIL_HOST= | ||
ENV LUTECE_MAIL_PORT= | ||
ENV LUTECE_MAIL_USER= | ||
ENV LUTECE_MAIL_PWD= | ||
ENV LUTECE_INTERNAL_KEYCLOAK= | ||
|
||
|
||
|
||
ENTRYPOINT ["/bin/bash", "/entrypoint.sh"] | ||
|
||
|
||
|
||
|
||
|
||
ARG site=site-citelibre-rendezvous-1.0.9 | ||
|
||
# build the site and assemble the webapp | ||
FROM lutece/builder as builder | ||
|
||
WORKDIR /app | ||
ADD pom.xml /app/pom.xml | ||
ADD src /app/src | ||
|
||
RUN mvn -e lutece:site-assembly -Pdev | ||
RUN cd target && mv $(ls *.war) ${site}.war | ||
|
||
# built tomcat | ||
FROM tomcat:9.0-jdk11 | ||
|
||
RUN apt update && apt install -y haproxy | ||
|
||
ARG tomcat=/usr/local/tomcat | ||
WORKDIR ${tomcat} | ||
COPY --from=builder /app/target/${site}.war webapps | ||
COPY haproxy.cfg /etc/haproxy/haproxy.cfg | ||
|
||
RUN cd webapps && mkdir rendezvous && mv ${site}.war rendezvous/rendezvous.war && cd rendezvous && jar xvf rendezvous.war && rm rendezvous.war | ||
|
||
COPY entrypoint.sh /entrypoint.sh | ||
|
||
COPY wait /wait | ||
|
||
RUN chmod +x /wait | ||
RUN chmod +x /entrypoint.sh | ||
RUN apt -y install haproxy | ||
ENV LUTECE_DB_HOST= | ||
ENV LUTECE_DB_PORT= | ||
ENV LUTECE_DB_NAME= | ||
ENV LUTECE_DB_USER= | ||
ENV LUTECE_DB_PWD= | ||
ENV LUTECE_MAIL_HOST= | ||
ENV LUTECE_MAIL_PORT= | ||
ENV LUTECE_MAIL_USER= | ||
ENV LUTECE_MAIL_PWD= | ||
ENV LUTECE_INTERNAL_KEYCLOAK= | ||
|
||
ENTRYPOINT ["/bin/bash", "/entrypoint.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 3 additions & 10 deletions
13
...bre-rendezvous/src/conf/dev/WEB-INF/conf/override/plugins/address-autocomplete.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,3 @@ | ||
# URL du Web Service SuggestPOI | ||
address-autocomplete.suggestPOI.ws.url = https://teleservices.paris.fr/StoreAdr/rest/PoiLib | ||
# Types de POI recherchés par défaut | ||
address-autocomplete.suggestPOI.param.types.default = ADR,VOIE,EQMT | ||
# Identifiant quelconque de l'application cliente | ||
address-autocomplete.suggestPOI.param.clientId = C80 | ||
address-autocomplete.suggestPOI.ws.datatype = jsonp | ||
address-autocomplete.suggestPOI.ws.apiinput = STOREADR | ||
## Localisation de POI recherchés par défaut | ||
address-autocomplete.suggestPOI.param.storeadrfilter.default = poiauto | ||
# Web Service SuggestPOI URL - Choose one of the following | ||
# French government API - France Only - Use your own if needed | ||
address-autocomplete.suggestPOI.ws.url = https://api-adresse.data.gouv.fr/search/ |
Oops, something went wrong.