-
Notifications
You must be signed in to change notification settings - Fork 12
/
docker-compose.yml
40 lines (40 loc) · 980 Bytes
/
docker-compose.yml
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
38
39
40
version: '3'
services:
iam-service:
image: iam-service:2.5.10-RELEASE
build:
context: iam-service
dockerfile: Dockerfile
network_mode: "host"
#ports:
# - "8080:8080"
spring-method-security:
image: spring-method-security:2.5.10-RELEASE
build:
context: iam-examples/spring-method-security
dockerfile: Dockerfile
network_mode: "host"
#ports:
# - "8082:8082"
depends_on:
- iam-service
spring-resource-server:
image: spring-resource-server:2.5.10-RELEASE
build:
context: iam-examples/spring-resource-server
dockerfile: Dockerfile
network_mode: "host"
#ports:
# - "8081:8081"
depends_on:
- iam-service
spring-webflux-secured:
image: spring-webflux-secured:2.5.10-RELEASE
build:
context: iam-examples/spring-webflux-secured
dockerfile: Dockerfile
network_mode: "host"
#ports:
# - "8083:8083"
depends_on:
- iam-service