Skip to content
Permalink
44940985bf
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 43 lines (41 sloc) 951 Bytes
version: "3.7"
services:
ldap:
build: ./ldap
volumes:
- type: tmpfs
target: /var/lib/dirsrv
db:
image: mariadb
environment:
MYSQL_USER: shibui
MYSQL_PASSWORD: secret
MYSQL_DATABASE: shibui
MYSQL_RANDOM_ROOT_PASSWORD: "yes"
volumes:
- mariadb-data:/var/lib/mysql
shibui:
image: tier/shib-idp-ui:1.7.0-RC2
depends_on:
- db
ports:
- 8080:8080
volumes:
- generated-metadata:/generated-metadata
- generated-conf:/generated-conf
- ./shibui/conf/application.yml:/opt/shibui/application.yml
- ./shibui/idp-home:/idp-home
idp:
build: ./idp
depends_on:
- ldap
- shibui
ports:
- "443:443"
volumes:
- generated-metadata:/opt/shibboleth-idp/metadata/generated
- generated-conf:/opt/shibboleth-idp/conf/generated
volumes:
generated-conf:
generated-metadata:
mariadb-data: