X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=docker%2FKeystone%2FDockerfile;h=861dfd60f94e3295344b97cca6aa2386e19b4911;hb=refs%2Fchanges%2F84%2F7784%2F1;hp=2030aa5165c6c5ea32893058b0a8133909c03e9d;hpb=33205b2d01d9991e01eff47d817afcf9fc4634dd;p=osm%2Fdevops.git diff --git a/docker/Keystone/Dockerfile b/docker/Keystone/Dockerfile index 2030aa51..861dfd60 100644 --- a/docker/Keystone/Dockerfile +++ b/docker/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" \ @@ -15,7 +33,7 @@ RUN apt-get update && \ apt-get upgrade -y && \ apt-get autoremove -y && \ apt-get install -y software-properties-common && \ - add-apt-repository -y cloud-archive:queens && \ + add-apt-repository -y cloud-archive:pike && \ apt-get update && apt dist-upgrade -y && \ apt-get install -y python-openstackclient keystone apache2 libapache2-mod-wsgi net-tools mysql-client && \ rm -rf /var/lib/apt/lists/* && \ @@ -26,9 +44,17 @@ 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 +# keystone +ENV REGION_ID RegionOne +ENV KEYSTONE_HOST keystone +# admin user +ENV ADMIN_USERNAME admin ENV ADMIN_PASSWORD admin -ENV NBI_PASSWORD nbi +ENV ADMIN_PROJECT admin +# nbi service user +ENV SERVICE_USERNAME nbi +ENV SERVICE_PASSWORD nbi +ENV SERVICE_PROJECT service ENTRYPOINT ./start.sh