Start using Keycloak for SSO authentification for business central

TODO : using keyclaok in other features like rest services in business central
This commit is contained in:
Nicolas Héron 2019-04-13 10:36:17 +02:00
commit b2c98ffe14
14 changed files with 3883 additions and 572 deletions

View file

@ -0,0 +1,15 @@
FROM postgres:9.4
RUN mkdir /home/pgdata
RUN mkdir /home/pgdata/keycloak
RUN chown -R postgres: /home/pgdata
VOLUME /home/pgdata
RUN chown postgres: /home/pgdata
ADD 01_init.sql /docker-entrypoint-initdb.d/
ADD 02_Create_table.sql /docker-entrypoint-initdb.d/
ADD 03_Create_table_content.sql /docker-entrypoint-initdb.d/
CMD ["postgres"]