Chengkai Yan | 7f278e3 | 2018-11-06 16:32:03 +0100 | [diff] [blame] | 1 | .. This work is licensed under a Creative Commons Attribution 4.0 International License.
|
| 2 | .. http://creativecommons.org/licenses/by/4.0
|
| 3 |
|
| 4 | Delivery
|
| 5 | ========
|
| 6 |
|
| 7 | Docker Container
|
| 8 | ----------------
|
| 9 |
|
maximesson | c762eb1 | 2019-04-04 14:43:43 +0000 | [diff] [blame] | 10 | **datafile** is delivered as a docker container. The latest onap automatically built version can be downloaded from nexus:
|
Chengkai Yan | 7f278e3 | 2018-11-06 16:32:03 +0100 | [diff] [blame] | 11 |
|
maximesson | c762eb1 | 2019-04-04 14:43:43 +0000 | [diff] [blame] | 12 | ``docker run -d -p 8100:8100 -p 8433:8433
|
| 13 | nexus3.onap.org:10001/onap/org.onap.dcaegen2.collectors.datafile.datafile-app-server:latest``
|
| 14 |
|
| 15 |
|
| 16 | Another option is to pull the container first, and then run it with the image ID:
|
| 17 |
|
| 18 | ``docker pull nexus3.onap.org:10001/onap/org.onap.dcaegen2.collectors.datafile.datafile-app-server:latest``
|
| 19 | ``docker images | grep 'datafile'``
|
| 20 | ``docker run -d -p 8100:8100 -p 8433:8433 <image ID>`` |