8eb36e7cde
Previously, the keydtone openrc file was not using the proper auth url, whcih was broken with too many double ticks. Also changed the auth port from public to admin since keystone user is an admin tenant. Changed DIR for scripts to align with the rest of the project. Change-Id: Iadde3239227e65ecca479b16a7b7db51d3a579c8
15 lines
360 B
Docker
15 lines
360 B
Docker
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%base
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
#Install required packages
|
|
RUN yum -y install openstack-keystone \
|
|
python-keystoneclient \
|
|
; yum clean all
|
|
|
|
# Add start-up and check scripts
|
|
ADD ./start.sh /start.sh
|
|
ADD ./check.sh /check.sh
|
|
|
|
# Run the Keystone start script
|
|
CMD ["/start.sh"]
|