blob: 4240d26de1675eb6ce97c06f0b059552413e3456 [file] [log] [blame]
Mike Marchetti182bd732018-09-05 09:52:42 -04001from ubuntu:xenial
2
3MAINTAINER Gennadiy Dubina <gennadiy.dubina@dataat.com>; Alfonso Tierno <alfonso.tiernosepulveda@telefoncia.com>
4
Mike Marchetti13d76c82018-09-19 15:00:36 -04005RUN apt-get update && apt-get -y install curl software-properties-common git
garciadeblas05e89d32018-11-29 15:49:03 +01006RUN DEBIAN_FRONTEND=noninteractive add-apt-repository -y cloud-archive:queens
garciadeblas6c991452018-10-28 23:44:43 +01007RUN apt-get update && apt-get install -y python-setuptools python-wheel mysql-client python-bitarray python-pip
8RUN DEBIAN_FRONTEND=noninteractive pip2 install pip==9.0.3 pyangbind
Mike Marchetti182bd732018-09-05 09:52:42 -04009
10ARG REPOSITORY_BASE=http://osm-download.etsi.org/repository/osm/debian
11ARG RELEASE=ReleaseFOUR-daily
12ARG REPOSITORY_KEY=OSM%20ETSI%20Release%20Key.gpg
13ARG REPOSITORY=testing
14
15RUN curl ${REPOSITORY_BASE}/${RELEASE}/${REPOSITORY_KEY} | apt-key add -
16RUN add-apt-repository -y "deb ${REPOSITORY_BASE}/${RELEASE} ${REPOSITORY} RO IM common openvim" && apt update
17
Mike Marchetti13d76c82018-09-19 15:00:36 -040018ARG RO_VERSION
19ARG IM_VERSION
20
21RUN apt-get update && apt-get install -y python-osm-ro${RO_VERSION} python-osm-im${IM_VERSION}
Mike Marchetti182bd732018-09-05 09:52:42 -040022
Mike Marchetti182bd732018-09-05 09:52:42 -040023
garciadeblase3697a12018-12-10 15:49:27 +010024VOLUME /var/log/osm
Mike Marchetti182bd732018-09-05 09:52:42 -040025
26EXPOSE 9090
27
28# Two mysql databases are needed (DB and DB_OVIM). Can be hosted on same or separated containers
29# These ENV must be provided
30ENV RO_DB_HOST=""
31ENV RO_DB_OVIM_HOST=""
32 # if empty RO_DB_HOST is assumed
33
34# These ENV should be provided first time for creating database. It will create and init only if empty!
35ENV RO_DB_ROOT_PASSWORD=""
36ENV RO_DB_OVIM_ROOT_PASSWORD=""
37 # if empty RO_DB_ROOT_PASSWORD is assumed
38
39# These ENV can be provided, but default values are ok
40ENV RO_DB_USER=mano
41ENV RO_DB_OVIM_USER=mano
42ENV RO_DB_PASSWORD=manopw
43ENV RO_DB_OVIM_PASSWORD=manopw
44ENV RO_DB_PORT=3306
45ENV RO_DB_OVIM_PORT=3306
46ENV RO_DB_NAME=mano_db
47ENV RO_DB_OVIM_NAME=mano_vim_db
48
tierno551c8942019-02-07 14:42:14 +010049HEALTHCHECK --start-period=130s --interval=10s --timeout=5s --retries=12 \
Mike Marchetti851aac22018-09-20 10:18:01 -040050 CMD curl --silent --fail localhost:9090/openmano/tenants || exit 1
tierno1ab62ca2019-06-19 15:30:16 +000051CMD /usr/bin/RO-start.sh
52