blob: ba0bf5aaa09f9fdece9c65decec047d82e9e8c14 [file] [log] [blame]
tiernoa8d63632018-05-10 13:12:32 +02001# This creates osm/NBI docker from local NBI source code
2
Mike Marchettic678d042018-04-18 13:51:27 -04003FROM ubuntu:16.04
4
5# Set the working directory to /app
6WORKDIR /app/osm_nbi
7
8# Copy the current directory contents into the container at /app
9ADD . /app
10
tiernoa8d63632018-05-10 13:12:32 +020011RUN apt-get update && apt-get install -y git python3 python3-jsonschema \
Eduardo Sousa819d34c2018-07-31 01:20:02 +010012 python3-pymongo python3-yaml python3-pip python3-keystoneclient \
Mike Marchettic678d042018-04-18 13:51:27 -040013 && pip3 install pip==9.0.3 \
Eduardo Sousa819d34c2018-07-31 01:20:02 +010014 && pip3 install aiokafka cherrypy==18.0.0 keystoneauth1 \
Mike Marchettic678d042018-04-18 13:51:27 -040015 && mkdir -p /app/storage/kafka && mkdir -p /app/log
tiernoaae4dc42018-06-11 18:55:50 +020016
17# OSM_COMMON
tiernoa8d63632018-05-10 13:12:32 +020018RUN git clone https://osm.etsi.org/gerrit/osm/common.git \
19 && cd common && python3 setup.py develop && cd ..
20# && pip3 install -U -r requirements.txt \
21# && cd ..
22
tiernoaae4dc42018-06-11 18:55:50 +020023# OSM_IM
24RUN pip3 install pyang && mkdir -p /app && cd /app \
25 && git clone https://github.com/robshakir/pyangbind \
26 && pip3 install -e pyangbind \
27 && git clone https://osm.etsi.org/gerrit/osm/IM \
28 && cd /app/IM/models/yang \
29 && pyang --plugindir /app/pyangbind/pyangbind/plugin -f pybind -o /app/osm_nbi/vnfd_catalog.py vnfd.yang \
30 && pyang --plugindir /app/pyangbind/pyangbind/plugin -f pybind -o /app/osm_nbi/nsd_catalog.py nsd.yang
Mike Marchettic678d042018-04-18 13:51:27 -040031
32EXPOSE 9999
33
34LABEL Maintainer="alfonso.tiernosepulveda@telefonica.com" \
35 Description="This implements a north bound interface for OSM" \
36 Version="1.0" \
37 Author="Alfonso Tierno"
38
39# Used for local storage
40VOLUME /app/storage
41# Used for logs
42VOLUME /app/log
43
44# The following ENV can be added with "docker run -e xxx' to configure
45# server
Eduardo Sousa819d34c2018-07-31 01:20:02 +010046ENV OSMNBI_SOCKET_HOST 0.0.0.0
47ENV OSMNBI_SOCKET_PORT 9999
Mike Marchettic678d042018-04-18 13:51:27 -040048# storage
Eduardo Sousa819d34c2018-07-31 01:20:02 +010049ENV OSMNBI_STORAGE_PATH /app/storage
Mike Marchettic678d042018-04-18 13:51:27 -040050# database
Eduardo Sousa819d34c2018-07-31 01:20:02 +010051ENV OSMNBI_DATABASE_DRIVER mongo
52ENV OSMNBI_DATABASE_HOST mongo
53ENV OSMNBI_DATABASE_PORT 27017
Mike Marchettic678d042018-04-18 13:51:27 -040054# web
Eduardo Sousa819d34c2018-07-31 01:20:02 +010055ENV OSMNBI_STATIC_DIR /app/osm_nbi/html_public
Mike Marchettic678d042018-04-18 13:51:27 -040056# logs
Eduardo Sousa819d34c2018-07-31 01:20:02 +010057ENV OSMNBI_LOG_FILE /app/log
58ENV OSMNBI_LOG_LEVEL DEBUG
Mike Marchettic678d042018-04-18 13:51:27 -040059# message
Eduardo Sousa819d34c2018-07-31 01:20:02 +010060ENV OSMNBI_MESSAGE_DRIVER kafka
61ENV OSMNBI_MESSAGE_HOST kafka
62ENV OSMNBI_MESSAGE_PORT 9092
tiernof5298be2018-05-16 14:43:57 +020063# logs
Eduardo Sousa819d34c2018-07-31 01:20:02 +010064ENV OSMNBI_LOG_FILE /app/log/nbi.log
65ENV OSMNBI_LOG_LEVEL DEBUG
66# authentication
67ENV OSMNBI_AUTHENTICATION_BACKEND internal
68#ENV OSMNBI_AUTHENTICATION_BACKEND keystone
69#ENV OSMNBI_AUTHENTICATION_AUTH_URL keystone
70#ENV OSMNBI_AUTHENTICATION_AUTH_PORT 5000
71#ENV OSMNBI_AUTHENTICATION_USER_DOMAIN_NAME default
72#ENV OSMNBI_AUTHENTICATION_PROJECT_DOMAIN_NAME default
73#ENV OSMNBI_AUTHENTICATION_SERVICE_USERNAME nbi
74#ENV OSMNBI_AUTHENTICATION_SERVICE_PASSWORD nbi
75#ENV OSMNBI_AUTHENTICATION_SERVICE_PROJECT service
Mike Marchettic678d042018-04-18 13:51:27 -040076
77# Run app.py when the container launches
78CMD ["python3", "nbi.py"]
79