| Mike Marchetti | 182bd73 | 2018-09-05 09:52:42 -0400 | [diff] [blame] | 1 | from ubuntu:xenial |
| 2 | |
| 3 | MAINTAINER Gennadiy Dubina <gennadiy.dubina@dataat.com>; Alfonso Tierno <alfonso.tiernosepulveda@telefoncia.com> |
| 4 | |
| Mike Marchetti | 13d76c8 | 2018-09-19 15:00:36 -0400 | [diff] [blame^] | 5 | RUN apt-get update && apt-get -y install curl software-properties-common git |
| 6 | RUN apt-get update && apt-get install -y python-setuptools python-wheel mysql-client python-bitarray |
| Mike Marchetti | 182bd73 | 2018-09-05 09:52:42 -0400 | [diff] [blame] | 7 | |
| 8 | ARG REPOSITORY_BASE=http://osm-download.etsi.org/repository/osm/debian |
| 9 | ARG RELEASE=ReleaseFOUR-daily |
| 10 | ARG REPOSITORY_KEY=OSM%20ETSI%20Release%20Key.gpg |
| 11 | ARG REPOSITORY=testing |
| 12 | |
| 13 | RUN curl ${REPOSITORY_BASE}/${RELEASE}/${REPOSITORY_KEY} | apt-key add - |
| 14 | RUN add-apt-repository -y "deb ${REPOSITORY_BASE}/${RELEASE} ${REPOSITORY} RO IM common openvim" && apt update |
| 15 | |
| Mike Marchetti | 13d76c8 | 2018-09-19 15:00:36 -0400 | [diff] [blame^] | 16 | ARG RO_VERSION |
| 17 | ARG IM_VERSION |
| 18 | |
| 19 | RUN apt-get update && apt-get install -y python-osm-ro${RO_VERSION} python-osm-im${IM_VERSION} |
| Mike Marchetti | 182bd73 | 2018-09-05 09:52:42 -0400 | [diff] [blame] | 20 | |
| 21 | RUN mkdir -p /bin/RO |
| 22 | |
| 23 | COPY scripts/ /bin/RO |
| 24 | |
| 25 | VOLUME /opt/openmano/logs |
| 26 | |
| 27 | EXPOSE 9090 |
| 28 | |
| 29 | # Two mysql databases are needed (DB and DB_OVIM). Can be hosted on same or separated containers |
| 30 | # These ENV must be provided |
| 31 | ENV RO_DB_HOST="" |
| 32 | ENV RO_DB_OVIM_HOST="" |
| 33 | # if empty RO_DB_HOST is assumed |
| 34 | |
| 35 | # These ENV should be provided first time for creating database. It will create and init only if empty! |
| 36 | ENV RO_DB_ROOT_PASSWORD="" |
| 37 | ENV RO_DB_OVIM_ROOT_PASSWORD="" |
| 38 | # if empty RO_DB_ROOT_PASSWORD is assumed |
| 39 | |
| 40 | # These ENV can be provided, but default values are ok |
| 41 | ENV RO_DB_USER=mano |
| 42 | ENV RO_DB_OVIM_USER=mano |
| 43 | ENV RO_DB_PASSWORD=manopw |
| 44 | ENV RO_DB_OVIM_PASSWORD=manopw |
| 45 | ENV RO_DB_PORT=3306 |
| 46 | ENV RO_DB_OVIM_PORT=3306 |
| 47 | ENV RO_DB_NAME=mano_db |
| 48 | ENV RO_DB_OVIM_NAME=mano_vim_db |
| 49 | |
| 50 | CMD /bin/RO/start.sh |