-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
31 lines (31 loc) · 1016 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
31 lines (31 loc) · 1016 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
version: '3'
services:
broker:
image: netifi/broker:1.6.9
environment:
- "BROKER_SERVER_OPTS=-Dnetifi.broker.ssl.disabled=true -Dnetifi.broker.cluster.clusterName=acmeshoes -Dnetifi.broker.admin.accessKey=8833333111127534 -Dnetifi.broker.admin.accessToken=Ih+hNsSdxLxAtHceTeEia2MGXSc= -Dnetifi.authentication.0.accessKey=8833333111127534 -Dnetifi.authentication.0.accessToken=Ih+hNsSdxLxAtHceTeEia2MGXSc="
ports:
- "6001:6001"
- "7001:7001"
- "8001:8001"
- "8101:8101"
inventory-service:
image: gregnetifi/acmeshoes-inventory-service
environment:
- "SPRING_PROFILES_ACTIVE=localdocker"
depends_on:
- broker
product-service:
image: gregnetifi/acmeshoes-product-service
environment:
- "SPRING_PROFILES_ACTIVE=localdocker"
depends_on:
- broker
store-app:
image: gregnetifi/acmeshoes-store-app
environment:
- "SPRING_PROFILES_ACTIVE=localdocker"
ports:
- "8080:8080"
depends_on:
- broker