Skip to content
Permalink
6bb982f099
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
35 lines (35 sloc) 894 Bytes
version: "2"
services:
# midpoint:
# image: midpoint
# mem_limit: 4g
# container_name: midpoint
# ports:
# - 8081:8080
# - 8443:8443
# volumes:
# - ~/code/git/tier-demos:/docker_data
#
ldap:
image: tier-demo-ldap
container_name: tier-demo-ldap
ports:
- 389:389
shibd:
image: tier-demo-idp
mem_limit: 4g
container_name: tier-demo-idp
ports:
- 8443:8443
- 443:4443
depends_on:
# Note: this only starts the other containers first.
# Still need to check to make sure they are available on container start.
- ldap
web-app:
image: tier-demo-web-app
container_name: tier-demo-web-app
ports:
- 9443:9443
depends_on:
- shibd