Merge "Fix typos in documentation"
[nonrtric.git] / test / prodstub / README.md
1 ## producer stub - a stub interface to simulate data producers ##
2
3 The producer stub is intended for function tests to simulate data producers.
4
5
6 # Ports and certificates
7 TBD
8
9 | Port     | Protocol |
10 | -------- | ----- |
11 | 8092     | http  |
12 | 8093     | https |
13
14
15
16 ### Control interface ###
17
18 TBD
19
20
21 ### Build and start ###
22
23 >Build image<br>
24 ```docker build -t producer-stub .```
25
26 >Start the image on both http and https<br>
27 ```docker run -it -p 8092:8092 -p 8093:8093 --name producer-stub producer-stub```
28
29 It will listen to http 8092 port and https 8093 port(using default certificates) at the same time.
30
31 TBD
32
33 ## License
34
35 Copyright (C) 2020 Nordix Foundation. All rights reserved.
36 Licensed under the Apache License, Version 2.0 (the "License");
37 you may not use this file except in compliance with the License.
38 You may obtain a copy of the License at
39
40      http://www.apache.org/licenses/LICENSE-2.0
41
42 Unless required by applicable law or agreed to in writing, software
43 distributed under the License is distributed on an "AS IS" BASIS,
44 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
45 See the License for the specific language governing permissions and
46 limitations under the License.