X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=docker%2FKeystone%2FDockerfile;h=c3ab344c27f72702286649d260b1e436206950aa;hb=bb631bed423b0cc47193108e705d354ed43625b0;hp=571e88739bad6fc54432b6c1c2c7d68e2d6d915b;hpb=09a1e974bb70fb9b02a9a0fb41f421fdf7457cbd;p=osm%2Fdevops.git diff --git a/docker/Keystone/Dockerfile b/docker/Keystone/Dockerfile index 571e8873..c3ab344c 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,31 +33,52 @@ 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 && \ + apt-get install -y python-openstackclient keystone apache2 libapache2-mod-wsgi net-tools mysql-client dnsutils && \ + apt-get install -y python-pip build-essential python-dev libldap2-dev libsasl2-dev libssl-dev libffi-dev libxml2-dev libxslt1-dev zlib1g-dev ldap-utils && \ + pip install python-ldap ldappool && \ rm -rf /var/lib/apt/lists/* && \ chmod +x start.sh -# DB Hostname +# database ENV DB_HOST keystone-db - -# DB Port ENV DB_PORT 3306 - -# DB Root User ENV ROOT_DB_USER root - -# DB Root Password ENV ROOT_DB_PASSWORD admin - -# Keystone user password ENV KEYSTONE_DB_PASSWORD admin - -# Admin password +# keystone +ENV REGION_ID RegionOne +ENV KEYSTONE_HOST keystone +# admin user +ENV ADMIN_USERNAME admin ENV ADMIN_PASSWORD admin +ENV ADMIN_PROJECT admin +# nbi service user +ENV SERVICE_USERNAME nbi +ENV SERVICE_PASSWORD nbi +ENV SERVICE_PROJECT service +# ldap +# ENV LDAP_AUTHENTICATION_DOMAIN_NAME no default +# ENV LDAP_URL ldap://localhost +# ENV LDAP_BIND_USER no default +# ENV LDAP_BIND_PASSWORD no default +# ENV LDAP_CHASE_REFERRALS no default +# ENV LDAP_PAGE_SIZE 0 +# ENV LDAP_USER_TREE_DN no default +# ENV LDAP_USER_OBJECTCLASS inetOrgPerson +# ENV LDAP_USER_ID_ATTRIBUTE cn +# ENV LDAP_USER_NAME_ATTRIBUTE sn +# ENV LDAP_USER_PASS_ATTRIBUTE userPassword +# ENV LDAP_USER_FILTER no default +# ENV LDAP_USER_ENABLED_ATTRIBUTE enabled +# ENV LDAP_USER_ENABLED_MASK 0 +# ENV LDAP_USER_ENABLED_DEFAULT true +# ENV LDAP_USER_ENABLED_INVERT false +# ENV LDAP_GROUP_OBJECTCLASS groupOfNames +# ENV LDAP_GROUP_TREE_DN no default +# ENV LDAP_USE_STARTTLS false +# ENV LDAP_TLS_CACERT_BASE64 no default +# ENV LDAP_TLS_REQ_CERT demand -# NBI password -ENV NBI_PASSWORD nbi - -ENTRYPOINT ./install.sh \ No newline at end of file +ENTRYPOINT ./start.sh