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
 
 
Cannot retrieve contributors at this time
version: "2"
services:
# midpoint:
# image: tier-demo-midpoint
# mem_limit: 4g
# container_name: tier-demo-midpoint
# ports:
# - 8081:8080
#
mysql:
image: tier-demo-mysql
container_name: tier-demo-mysql
ports:
- 3306:3306
ldap:
image: tier-demo-ldap
container_name: tier-demo-ldap
ports:
- 389:389
grouper:
image: tier-demo-grouper
mem_limit: 4g
container_name: tier-demo-grouper
ports:
- 8080:8080
depends_on:
# Note: this only starts the other containers first.
# Still need to check to make sure they are available on container start.
- mysql
- ldap
shib:
image: tier-demo-idp
container_name: tier-demo-idp
ports:
- 443:4443
# - 8443:8443
depends_on:
- ldap
web-app:
image: tier-demo-web-app
container_name: tier-demo-web-app
ports:
- 9443:9443
depends_on:
- shib