-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (37 loc) · 838 Bytes
/
docker-compose.yml
File metadata and controls
37 lines (37 loc) · 838 Bytes
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
# SSO Integration docker-compose.yml
version: '3.4'
services:
rockcms_idp:
container_name: rockcms_idp
image: kristophjunge/test-saml-idp
networks:
- rock-be
ports:
- '8080:8080/tcp'
- '8443:8443/tcp'
environment:
- SIMPLESAMLPHP_SP_ENTITY_ID=saml-poc
- SIMPLESAMLPHP_SP_ASSERTION_CONSUMER_SERVICE=https://localhost:4300/sso/callback
volumes:
- ./samlconfig:/var/www/simplesamlphp/config/
- ./:/app
example_sso:
container_name: example_sso
build:
context: .
dockerfile: Dockerfile
networks:
- rock-be
command: >
/bin/bash -c "
echo '############'
npm run dev
"
ports:
- '5000:5000/tcp'
- '4300:4300/tcp'
environment:
- NODE_ENV=development
networks:
rock-be:
driver: bridge