blob: b75ea97f1b6a571f9a1bb92e06687fce19a8761d (
plain)
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
|
# mock-ves
This is a simple ves mock created for ONAP integration tests.
Build image
===========
To build ves-mock image you can simply run command:
```
docker build . -t mock-ves
```
Run image
=========
To run ves-mock image use below command:
```
docker run -d --net=host --name mock-ves mock-ves
```
Stop container
==============
To stop the container use:
```
docker rm -f mock-ves
```
|