Skip to content

Commit

Permalink
bump IdP-UI to 1.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Sep 20, 2022
1 parent febe9b4 commit ad473b3
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 38 deletions.
24 changes: 11 additions & 13 deletions Workbench/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -390,28 +390,27 @@ services:
volumes:
- generated-metadata:/generated-metadata
- generated-config:/generated-config

idp_ui_data:
image: tier/mariadb:mariadb10.2
ports:
- 33366:3306
image: postgres
environment:
MYSQL_USER: shibui
MYSQL_PASSWORD: secret
MYSQL_DATABASE: shibui
MYSQL_RANDOM_ROOT_PASSWORD: "yes"
POSTGRES_USER: shibui
POSTGRES_PASSWORD: secret
POSTGRES_DB: shibui
networks:
net:
aliases:
- idpui-data
ports:
- 15432:5432
healthcheck:
test: curl -s 127.0.0.1:3306
test: /usr/local/bin/pg_isready
interval: 30s
timeout: 30s
retries: 3
volumes:
- mariadb-data:/var/lib/mysql
- idpui_data:/var/lib/postgresql/data

mq:
build: ./mq/
environment:
Expand All @@ -437,8 +436,6 @@ services:
- CSPHOSTNAME
networks:
- net
depends_on:
- idp_ui_api
ports:
- 443:443

Expand Down Expand Up @@ -584,3 +581,4 @@ volumes:
generated-config:
generated-metadata:
mariadb-data:
idpui_data:
2 changes: 1 addition & 1 deletion Workbench/idp_ui/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM i2incommon/shib-idp-ui:1.9.2
FROM i2incommon/shib-idp-ui:1.13.2

ARG CSPHOSTNAME=localhost
ENV CSPHOSTNAME=$CSPHOSTNAME
Expand Down
15 changes: 8 additions & 7 deletions Workbench/idp_ui/container_files/idp_ui/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,15 @@ shibui:
email: urn:oid:0.9.2342.19200300.100.1.3
spring:
datasource:
platform: postgres
driver-class-name: org.postgresql.Driver
url: jdbc:postgresql://idpui-data:5432/shibui
username: shibui
password: secret
url: jdbc:mariadb://idpui-data:3306/shibui
driverClassName: org.mariadb.jdbc.Driver
platform: mariadb
jpa:
database-platform: org.hibernate.dialect.MariaDBDialect
hibernate:
ddl-auto: update
show-sql: false
properties:
hibernate:
dialect: org.hibernate.dialect.PostgreSQL95Dialect
format_sql: true


10 changes: 1 addition & 9 deletions Workbench/idp_ui_api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM i2incommon/shib-idp-ui:1.9.2
FROM i2incommon/shib-idp-ui:1.13.2

ARG CSPHOSTNAME=localhost
ENV CSPHOSTNAME=$CSPHOSTNAME
Expand All @@ -7,12 +7,4 @@ COPY container_files/idp_ui/application.yml /opt/shibui/
COPY container_files/idp_ui/shibui-test.p12 /opt/shibui/
COPY container_files/idp_ui/users.txt /opt/shibui/

#RUN mkdir -p /opt/shibui/saml/
##COPY container_files/idp_ui/samlkeystore.jks /opt/shibui/saml/
#COPY container_files/idp_ui/idp-metadata.xml /opt/shibui/saml/

#COPY container_files/system/setservername.sh /usr/local/bin/
#RUN chmod 755 /usr/local/bin/setservername.sh
#RUN /usr/local/bin/setservername.sh

EXPOSE 8443
15 changes: 8 additions & 7 deletions Workbench/idp_ui_api/container_files/idp_ui/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,15 @@ shibui:
authentication-header: IDPUI_API_KEY
spring:
datasource:
platform: postgres
driver-class-name: org.postgresql.Driver
url: jdbc:postgresql://idpui-data:5432/shibui
username: shibui
password: secret
url: jdbc:mariadb://idpui-data:3306/shibui
driverClassName: org.mariadb.jdbc.Driver
platform: mariadb
jpa:
database-platform: org.hibernate.dialect.MariaDBDialect
hibernate:
ddl-auto: update
show-sql: false
properties:
hibernate:
dialect: org.hibernate.dialect.PostgreSQL95Dialect
format_sql: true


2 changes: 1 addition & 1 deletion Workbench/webproxy/container_files/httpd/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h3>Welcome to the InCommon TAP Workbench!</h3>
<li><a href="https://__CSPHOSTNAME__/grouper" target="TAP-WB-GROUPER">Grouper (2.6.0)</a></li>
<li><a href="https://__CSPHOSTNAME__/midpoint" target="TAP-WB-MIDPOINT">midPoint (4.4)</a></li>
<li><a href="https://__CSPHOSTNAME__/registry" target="TAP-WB-COMANAGE">COmanage Registry (3.3.4)</a></li>
<li><a href="https://__CSPHOSTNAME__/idpui/" target="TAP-WB-IDPUI">Shibboleth IdP UI (1.9.2)</a></li>
<li><a href="https://__CSPHOSTNAME__/idpui/" target="TAP-WB-IDPUI">Shibboleth IdP UI (1.13.2)</a></li>
</ul>

<br />
Expand Down

0 comments on commit ad473b3

Please sign in to comment.