Merge "Add Keystone image for Ubuntu"
This commit is contained in:
commit
2756663685
@ -9,6 +9,7 @@ RUN apt-get update \
|
||||
&& apt-get dist-upgrade -y \
|
||||
&& apt-get install -y --no-install-recommends \
|
||||
crudini \
|
||||
curl \
|
||||
openssl \
|
||||
&& apt-get clean
|
||||
|
||||
|
22
docker/ubuntu/binary/keystone/Dockerfile
Normal file
22
docker/ubuntu/binary/keystone/Dockerfile
Normal file
@ -0,0 +1,22 @@
|
||||
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%base:%%KOLLA_TAG%%
|
||||
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
||||
|
||||
RUN apt-get install -y --no-install-recommends \
|
||||
apache2 \
|
||||
keystone \
|
||||
libapache2-mod-wsgi \
|
||||
python-keystoneclient \
|
||||
&& apt-get clean
|
||||
|
||||
RUN curl -o /etc/apache2/sites-available/wsgi-keystone.conf \
|
||||
https://raw.githubusercontent.com/openstack/keystone/stable/kilo/httpd/wsgi-keystone.conf
|
||||
RUN ln -s /etc/apache2/sites-available/wsgi-keystone.conf /etc/apache2/sites-enabled
|
||||
RUN mkdir -p /var/www/cgi-bin/keystone
|
||||
RUN cp -a /usr/share/keystone/wsgi.py /var/www/cgi-bin/keystone/main
|
||||
RUN cp -a /usr/share/keystone/wsgi.py /var/www/cgi-bin/keystone/admin
|
||||
RUN chown -R keystone:keystone /var/www/cgi-bin/keystone
|
||||
RUN chmod 755 /var/www/cgi-bin/keystone/*
|
||||
|
||||
COPY start.sh check.sh /
|
||||
|
||||
CMD ["/start.sh"]
|
1
docker/ubuntu/binary/keystone/build
Symbolic link
1
docker/ubuntu/binary/keystone/build
Symbolic link
@ -0,0 +1 @@
|
||||
../../../../tools/build-docker-image
|
1
docker/ubuntu/binary/keystone/check.sh
Symbolic link
1
docker/ubuntu/binary/keystone/check.sh
Symbolic link
@ -0,0 +1 @@
|
||||
../../../common/keystone/check.sh
|
1
docker/ubuntu/binary/keystone/start.sh
Symbolic link
1
docker/ubuntu/binary/keystone/start.sh
Symbolic link
@ -0,0 +1 @@
|
||||
../../../common/keystone/start.sh
|
Loading…
Reference in New Issue
Block a user