| 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 |
| garciadeblas | 05e89d3 | 2018-11-29 15:49:03 +0100 | [diff] [blame^] | 6 | RUN DEBIAN_FRONTEND=noninteractive add-apt-repository -y cloud-archive:queens |
| garciadeblas | 6c99145 | 2018-10-28 23:44:43 +0100 | [diff] [blame] | 7 | RUN apt-get update && apt-get install -y python-setuptools python-wheel mysql-client python-bitarray python-pip |
| 8 | RUN DEBIAN_FRONTEND=noninteractive pip2 install pip==9.0.3 pyangbind |
| Mike Marchetti | 182bd73 | 2018-09-05 09:52:42 -0400 | [diff] [blame] | 9 | |
| 10 | ARG REPOSITORY_BASE=http://osm-download.etsi.org/repository/osm/debian |
| 11 | ARG RELEASE=ReleaseFOUR-daily |
| 12 | ARG REPOSITORY_KEY=OSM%20ETSI%20Release%20Key.gpg |
| 13 | ARG REPOSITORY=testing |
| 14 | |
| 15 | RUN curl ${REPOSITORY_BASE}/${RELEASE}/${REPOSITORY_KEY} | apt-key add - |
| 16 | RUN add-apt-repository -y "deb ${REPOSITORY_BASE}/${RELEASE} ${REPOSITORY} RO IM common openvim" && apt update |
| 17 | |
| Mike Marchetti | 13d76c8 | 2018-09-19 15:00:36 -0400 | [diff] [blame] | 18 | ARG RO_VERSION |
| 19 | ARG IM_VERSION |
| 20 | |
| 21 | 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] | 22 | |
| 23 | RUN mkdir -p /bin/RO |
| 24 | |
| 25 | COPY scripts/ /bin/RO |
| 26 | |
| 27 | VOLUME /opt/openmano/logs |
| 28 | |
| 29 | EXPOSE 9090 |
| 30 | |
| 31 | # Two mysql databases are needed (DB and DB_OVIM). Can be hosted on same or separated containers |
| 32 | # These ENV must be provided |
| 33 | ENV RO_DB_HOST="" |
| 34 | ENV RO_DB_OVIM_HOST="" |
| 35 | # if empty RO_DB_HOST is assumed |
| 36 | |
| 37 | # These ENV should be provided first time for creating database. It will create and init only if empty! |
| 38 | ENV RO_DB_ROOT_PASSWORD="" |
| 39 | ENV RO_DB_OVIM_ROOT_PASSWORD="" |
| 40 | # if empty RO_DB_ROOT_PASSWORD is assumed |
| 41 | |
| 42 | # These ENV can be provided, but default values are ok |
| 43 | ENV RO_DB_USER=mano |
| 44 | ENV RO_DB_OVIM_USER=mano |
| 45 | ENV RO_DB_PASSWORD=manopw |
| 46 | ENV RO_DB_OVIM_PASSWORD=manopw |
| 47 | ENV RO_DB_PORT=3306 |
| 48 | ENV RO_DB_OVIM_PORT=3306 |
| 49 | ENV RO_DB_NAME=mano_db |
| 50 | ENV RO_DB_OVIM_NAME=mano_vim_db |
| 51 | |
| Mike Marchetti | 851aac2 | 2018-09-20 10:18:01 -0400 | [diff] [blame] | 52 | HEALTHCHECK --interval=5s --timeout=2s --retries=12 \ |
| 53 | CMD curl --silent --fail localhost:9090/openmano/tenants || exit 1 |
| Mike Marchetti | 182bd73 | 2018-09-05 09:52:42 -0400 | [diff] [blame] | 54 | CMD /bin/RO/start.sh |