Skip to content
Snippets Groups Projects
Commit 23a16fbc authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Glance installation from source"

parents 63035f7c 7285ac03
No related branches found
No related tags found
No related merge requests found
Showing
with 57 additions and 0 deletions
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%glance-base:%%KOLLA_TAG%%
MAINTAINER Kolla Project (https://launchpad.net/kolla)
COPY start.sh check.sh /
COPY config-internal.sh config-external.sh /opt/kolla/
CMD ["/start.sh"]
../../../../../tools/build-docker-image
\ No newline at end of file
../../../../common/glance/glance-api/check.sh
\ No newline at end of file
../../../../common/glance/glance-api/config-external.sh
\ No newline at end of file
../../../../common/glance/glance-api/config-internal.sh
\ No newline at end of file
../../../../common/glance/glance-api/start.sh
\ No newline at end of file
# Build info specific to this image. All values can be overridden in .buildconf
COMPONENT=glance
SOURCE_INSTALL_AVAILABLE=1
# Used for git install method
: ${CLONE_FROM:=https://github.com/openstack/glance}
# Used for curl install method
: ${TARBALL_URI:=http://tarballs.openstack.org/glance/glance-master.tar.gz}
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%base:%%KOLLA_TAG%%
MAINTAINER Kolla Project (https://launchpad.net/kolla)
ADD ./glance.tar /
RUN ln -s /glance-* /glance
RUN cd /glance \
&& pip install -r requirements.txt \
&& pip install /glance \
&& mkdir /etc/glance /var/log/glance \
&& cp -r /glance/etc/* /etc/glance/ \
&& rm -rf /root/.cache
COPY config-glance.sh /opt/kolla/
CMD ["/start.sh"]
../../../../../tools/build-docker-image
\ No newline at end of file
../../../../common/glance/glance-base/config-glance.sh
\ No newline at end of file
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%base:%%KOLLA_TAG%%
MAINTAINER Kolla Project (https://launchpad.net/kolla)
VOLUME [ "/var/lib/glance" ]
CMD ["/bin/true"]
../../../../../tools/build-docker-image
\ No newline at end of file
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%glance-base:%%KOLLA_TAG%%
MAINTAINER Kolla Project (https://launchpad.net/kolla)
COPY config-internal.sh config-external.sh /opt/kolla/
COPY start.sh /
CMD ["/start.sh"]
../../../../../tools/build-docker-image
\ No newline at end of file
../../../../common/glance/glance-registry/config-external.sh
\ No newline at end of file
../../../../common/glance/glance-registry/config-internal.sh
\ No newline at end of file
../../../../common/glance/glance-registry/start.sh
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment