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
0 contributors

Users who have contributed to this file

version: '2'
services:
shibboleth_idp_0:
image: my/shibboleth_idp
container_name: shibboleth_idp_0
hostname: shibboleth_idp_0
networks:
- i2network
cap_add:
- ALL
- NET_ADMIN
- SYS_ADMIN
volumes:
- shibboleth_idp_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
networks:
- i2network
cap_add:
- ALL
- NET_ADMIN
- SYS_ADMIN
volumes:
- shibboleth_idp_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
networks:
- i2network
depends_on:
- shibboleth_idp_1
- shibboleth_idp_0
ports:
- "80:80"
- "5533:5533"
- "443:443"
networks:
i2network:
driver: bridge
volumes:
shibboleth_idp_credentials:
driver: local