X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FNBI.git;a=blobdiff_plain;f=keystone%2FDockerfile;h=59b053c2235fb83996d54c8a9f0d41a26ce4914a;hp=263716a0de336bed7ea589790de5cf5f2c17fe41;hb=8f5ee9239d61e3c7f40d2051135e607eaa46cb12;hpb=747c34e54f98aa70b3407ad0da54e5ad0cfb64a0 diff --git a/keystone/Dockerfile b/keystone/Dockerfile index 263716a..59b053c 100644 --- a/keystone/Dockerfile +++ b/keystone/Dockerfile @@ -1,3 +1,21 @@ +# Copyright 2018 Whitestack, LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. +# +# For those usages not covered by the Apache License, Version 2.0 please +# contact: esousa@whitestack.com or glavado@whitestack.com +## + FROM ubuntu:16.04 LABEL Maintainer="esousa@whitestack.com" \ @@ -21,12 +39,14 @@ RUN apt-get update && \ rm -rf /var/lib/apt/lists/* && \ chmod +x start.sh -ENV DB_HOST keystone-db # DB Hostname -ENV DB_PORT 3306 # DB Port -ENV ROOT_DB_USER root # DB Root User -ENV ROOT_DB_PASSWORD admin # DB Root Password -ENV KEYSTONE_DB_PASSWORD admin # Keystone user password -ENV ADMIN_PASSWORD admin # Admin password -ENV NBI_PASSWORD nbi # NBI password +# database +ENV DB_HOST keystone-db +ENV DB_PORT 3306 +ENV ROOT_DB_USER root +ENV ROOT_DB_PASSWORD admin +# keystone +ENV KEYSTONE_DB_PASSWORD admin +ENV ADMIN_PASSWORD admin +ENV NBI_PASSWORD nbi ENTRYPOINT ./start.sh