Skip to content
Permalink
89df82f095
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
34 lines (33 sloc) 898 Bytes
version: '2'
services:
shibboleth_idp_0:
image: my/shibboleth_idp
container_name: shibboleth_idp_0
hostname: shibboleth_idp_0
volumes:
- ./credentials:/tmp/credentials
- ./logs/tomcat:/usr/local/tomcat/logs:rw
- ./logs/shibboleth_idp:/opt/shibboleth/shibboleth-identity-provider-3.2.1/logs:rw
ports:
- "8080:8443"
shibboleth_idp_1:
image: my/shibboleth_idp
container_name: shibboleth_idp_1
hostname: shibboleth_idp_1
volumes:
- ./credentials:/tmp/credentials
- ./logs/tomcat:/usr/local/tomcat/logs:rw
- ./logs/shibboleth_idp:/opt/shibboleth/shibboleth-identity-provider-3.2.1/logs:rw
ports:
- "8081:8443"
haproxy:
image: my/haproxy
container_name: haproxy
hostname: haproxy
links:
- shibboleth_idp_1
- shibboleth_idp_0
ports:
- "80:80"
- "5533:5533"
- "443:443"