Skip to content
Permalink
master
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
@pcaskey
Latest commit 286b0d1 Oct 11, 2018 History
1 contributor

Users who have contributed to this file

version: "3.3"
services:
idp:
build:
context: ./idp/
args:
TOMCFG: ./container_files/config/tomcat
TOMCERT: ./container_files/credentials/tomcat
TOMWWWROOT: ./container_files/wwwroot
SHBCFG: ./container_files/config/shib-idp/conf
SHBCREDS: ./container_files/credentials/shib-idp
SHBVIEWS: ./container_files/config/shib-idp/views
SHBEDWAPP: ./container_files/config/shib-idp/edit-webapp
SHBMSGS: ./container_files/config/shib-idp/messages
SHBMD: ./container_files/config/shib-idp/metadata
depends_on:
- data
networks:
- front
- back
ports:
- "443:443"
data:
build: ./data/
expose:
- "389"
networks:
- back
ports:
- "389:389"
volumes:
- shibidp_ldap:/var/lib/dirsrv
sp:
build: ./sp/
expose:
- "8443"
networks:
- front
- back
ports:
- "8443:8443"
networks:
front:
driver: bridge
back:
driver: bridge
volumes:
shibidp_ldap:
driver: local