-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-vomci-and-simulators.yaml
133 lines (109 loc) · 3.67 KB
/
docker-compose-vomci-and-simulators.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
version: '3.5'
networks:
baadist_default:
driver: bridge
name: baadist_default
services:
zookeeper:
image: confluentinc/cp-zookeeper:5.5.0
hostname: zookeeper
container_name: zookeeper
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
networks:
- baadist_default
kafka:
image: confluentinc/cp-kafka:5.5.0
hostname: kafka
container_name: kafka
depends_on:
- zookeeper
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: 'zookeeper:2181'
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092,PLAINTEXT_HOST://localhost:29092
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0
networks:
- baadist_default
vomci:
image: obbaa-vomci-new
#image: broadbandforum/obbaa-vomci:develop
#image: obbaa-vomci
#hostname: obbaa-vomci
container_name: obbaa-vomci
### uncomment to run container without starting simulator
entrypoint: tail
command: ["-f","/dev/null"]
ports:
- 8801:8801
- 58433:58433
environment:
GRPC_SERVER_NAME: obbaa-vomci
LOCAL_GRPC_SERVER_PORT: 58433
# Kafka bootstrap server, please provide only one address
KAFKA_BOOTSTRAP_SERVER: "kafka:9092 localhost:9092"
# List of Consumer topics, separated by spaces
KAFKA_REQUEST_TOPICS: "vomci1-request"
KAFKA_RESPONSE_TOPICS: 'vomci1-response'
KAFKA_NOTIFICATION_TOPICS: "vomci1-notification"
VOMCI_KAFKA_SENDER_NAME: "vomci1"
VOMCI_KAFKA_VOLTMF_NAME: "vOLTMF"
networks:
- baadist_default
depends_on:
- zookeeper
- kafka
### Overrides the code (useful for development)
#volumes:
# - .:/obbaa-vomci
polt-simulator:
image: obbaa-simulators.registry.broadband-forum.org/obbaa-polt-simulator:netopeer2.x_2.1_develop
#image: broadbandforum/obbaa-polt-simulator:latest
#image: obbaa-polt-simulator
stdin_open: true
tty: true
container_name: polt-simulator
command: ["-dummy_tr385"]
### uncomment to run container without starting simulator
#entrypoint: tail
#command: ["-f","/dev/null"]
hostname: polt-simulator
environment:
- PASSWD=root
ports:
- "10830:10830"
networks:
- baadist_default
onu-simulator:
image: my-onu-simulator2
#image: obbaa-onu-simulator
container_name: onu-simulator
stdin_open: true
tty: true
#entrypoint: python3
#command: ["/usr/local/bin/onusim.py", "-p", "50000","-n","CT_1","-i", "1", "-l", "2" ]
### uncomment to run container without starting simulator
entrypoint: tail
command: ["-f","/dev/null"]
hostname: onu-simulator
environment:
- PASSWD=root
ports:
- "50000:50000"
networks:
- baadist_default
kafka-gpb-tester:
image: obbaa-simulators.registry.broadband-forum.org/kafka-gpb-tester:R5.0
#image: kafka-gpb-tester
container_name: kafka-gpb-tester
### don't run a command by default
### enter the container with 'docker exec -it kafka-gpb-tester bash' to execute the scripts in /kafka-gpb-teste
entrypoint: tail
command: ["-f","/dev/null"]
volumes:
- ./kafka-gpb-tester:/kafka-gpb-tester
networks:
- baadist_default