-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbootstrap.yaml
37 lines (36 loc) · 1.14 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
36
37
---
services:
satosa:
image: "${DOCKERHUB_FQDN}/satosa:wallet"
container_name: satosa-issuer
restart: always
depends_on:
- simplesamlphp
expose:
- 443
ports:
- "443:8000"
environment:
- "METADATA_DIR=/etc/satosa/metadata"
- "WORKER_TIMEOUT=120"
- "BASE=${ISSUER_FQDN}"
volumes:
- ${PWD}/satosa:/etc/satosa
- ${PWD}/certs:/etc/dehydrated
simplesamlphp:
image: "${DOCKERHUB_FQDN}/swamid/simplesamlphp"
container_name: simplesamlphp
hostname: ${ISSUER_HOSTNAME}
restart: always
expose:
- "8443"
ports:
- "8443:8443"
volumes:
- "./simplesamlphp/ports.conf:/etc/apache2/ports.conf:ro"
- "./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"