blob: baec51e65a283f1d1e3a60fff1c5a18632915b14 [file] [log] [blame]
calvinosanchbfb77902019-07-31 13:31:16 +00001##
2# Copyright 2019 ETSI
3#
4# Licensed under the Apache License, Version 2.0 (the "License"); you may
5# not use this file except in compliance with the License. You may obtain
6# a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13# License for the specific language governing permissions and limitations
14# under the License.
15##
16
17########################################################################
18
Mike Marchetti182bd732018-09-05 09:52:42 -040019from ubuntu:xenial
20
21MAINTAINER Gennadiy Dubina <gennadiy.dubina@dataat.com>; Alfonso Tierno <alfonso.tiernosepulveda@telefoncia.com>
22
Mike Marchetti13d76c82018-09-19 15:00:36 -040023RUN apt-get update && apt-get -y install curl software-properties-common git
garciadeblas05e89d32018-11-29 15:49:03 +010024RUN DEBIAN_FRONTEND=noninteractive add-apt-repository -y cloud-archive:queens
garciadeblas6c991452018-10-28 23:44:43 +010025RUN apt-get update && apt-get install -y python-setuptools python-wheel mysql-client python-bitarray python-pip
calvinosanchbfb77902019-07-31 13:31:16 +000026RUN DEBIAN_FRONTEND=noninteractive pip2 install -U pip && python -m pip install pyangbind
Mike Marchetti182bd732018-09-05 09:52:42 -040027
28ARG REPOSITORY_BASE=http://osm-download.etsi.org/repository/osm/debian
29ARG RELEASE=ReleaseFOUR-daily
30ARG REPOSITORY_KEY=OSM%20ETSI%20Release%20Key.gpg
31ARG REPOSITORY=testing
32
33RUN curl ${REPOSITORY_BASE}/${RELEASE}/${REPOSITORY_KEY} | apt-key add -
34RUN add-apt-repository -y "deb ${REPOSITORY_BASE}/${RELEASE} ${REPOSITORY} RO IM common openvim" && apt update
35
Mike Marchetti13d76c82018-09-19 15:00:36 -040036ARG RO_VERSION
37ARG IM_VERSION
38
39RUN apt-get update && apt-get install -y python-osm-ro${RO_VERSION} python-osm-im${IM_VERSION}
Mike Marchetti182bd732018-09-05 09:52:42 -040040
Mike Marchetti182bd732018-09-05 09:52:42 -040041
garciadeblase3697a12018-12-10 15:49:27 +010042VOLUME /var/log/osm
Mike Marchetti182bd732018-09-05 09:52:42 -040043
44EXPOSE 9090
45
46# Two mysql databases are needed (DB and DB_OVIM). Can be hosted on same or separated containers
47# These ENV must be provided
48ENV RO_DB_HOST=""
49ENV RO_DB_OVIM_HOST=""
50 # if empty RO_DB_HOST is assumed
51
52# These ENV should be provided first time for creating database. It will create and init only if empty!
53ENV RO_DB_ROOT_PASSWORD=""
54ENV RO_DB_OVIM_ROOT_PASSWORD=""
55 # if empty RO_DB_ROOT_PASSWORD is assumed
56
57# These ENV can be provided, but default values are ok
58ENV RO_DB_USER=mano
59ENV RO_DB_OVIM_USER=mano
60ENV RO_DB_PASSWORD=manopw
61ENV RO_DB_OVIM_PASSWORD=manopw
62ENV RO_DB_PORT=3306
63ENV RO_DB_OVIM_PORT=3306
64ENV RO_DB_NAME=mano_db
65ENV RO_DB_OVIM_NAME=mano_vim_db
66
tierno551c8942019-02-07 14:42:14 +010067HEALTHCHECK --start-period=130s --interval=10s --timeout=5s --retries=12 \
Mike Marchetti851aac22018-09-20 10:18:01 -040068 CMD curl --silent --fail localhost:9090/openmano/tenants || exit 1
tierno1ab62ca2019-06-19 15:30:16 +000069CMD /usr/bin/RO-start.sh
70