blob: b2d9425b200508b3989422ce4a195b15e2083283 [file] [log] [blame]
Chengkai Yan7f278e32018-11-06 16:32:03 +01001.. This work is licensed under a Creative Commons Attribution 4.0 International License.
2.. http://creativecommons.org/licenses/by/4.0
3
4Delivery
5========
6
7Docker Container
8----------------
9
maximessonc762eb12019-04-04 14:43:43 +000010**datafile** is delivered as a docker container. The latest onap automatically built version can be downloaded from nexus:
Chengkai Yan7f278e32018-11-06 16:32:03 +010011
maximessonc762eb12019-04-04 14:43:43 +000012 ``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
16Another 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>``