-
Notifications
You must be signed in to change notification settings - Fork 6
/
bootstrap.yaml
35 lines (34 loc) · 1.12 KB
/
bootstrap.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
services:
satosa:
image: "${DOCKERHUB_FQDN}/satosa:wallet"
container_name: satosa-issuer
restart: always
depends_on:
- simplesamlphp
expose:
- 1443
ports:
- "1443:8000"
environment:
- "METADATA_DIR=/etc/satosa/metadata"
- "WORKER_TIMEOUT=120"
- "REQUESTS_CA_BUNDLE=/etc/satosa/simplesaml_webcert.pem" #Workaround to accept self signed cert
volumes:
- ${PWD}/satosa:/etc/satosa
- ${PWD}/certs:/etc/dehydrated
simplesamlphp:
image: "${DOCKERHUB_FQDN}/swamid/simplesamlphp"
container_name: simplesamlphp
restart: always
expose:
- "8443"
ports:
- "8443:443"
volumes:
- "./simplesamlphp/apache2.conf:/etc/apache2/sites-enabled/ssp.conf:ro"
- "./simplesamlphp/authsources.php:/var/simplesamlphp/config/authsources.php:ro"
- "./simplesamlphp/config-bootstrap.php:/var/simplesamlphp/config/config.php:ro"
- "./simplesamlphp/samlcert:/var/simplesamlphp/cert:ro"
- "./simplesamlphp/webcert:/certs:ro"
- "./simplesamlphp/saml20-idp-hosted.php:/var/simplesamlphp/metadata/saml20-idp-hosted.php:ro"