-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml
42 lines (38 loc) · 1.28 KB
/
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
41
42
version: '3.7'
services:
#############################################################################################
### SPLUNK DEV BOX ###
#############################################################################################
ntt-data-notification-splunk:
image: splunk/splunk:latest
environment:
- SPLUNK_PASSWORD=TestTest
- SPLUNK_START_ARGS=--accept-license
ports:
- "7000:8000"
- "8088:8088"
networks:
notification-net:
ipv4_address: 172.20.0.5
#############################################################################################
### NTT Data notification service ###
#############################################################################################
ntt-data-notification-service:
build:
context: .
args:
- SERVICE_NAME=ntt-data-notification-service
ports:
- "7080:8080"
environment:
- TOKENS=${TOKENS}
- UPDATE_CARD_BASE=${UPDATE_CARD_BASE}
networks:
notification-net:
ipv4_address: 172.20.0.6
networks:
notification-net:
driver: "bridge"
ipam:
config:
- subnet: 172.20.0.0/24