Add memcached to docker_templates

Change-Id: I1f3f6f3bcc5de5baf5a1ebddf18f7d7c70963b1b
Partially-Implements: blueprint dockerfile-template
This commit is contained in:
Sam Yaple 2015-08-17 07:03:25 +00:00
parent 9bd3ea7207
commit 28f820fc5e
3 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,19 @@
FROM {{ namespace }}/{{ base_distro }}-{{ install_type }}-base:{{ tag }}
MAINTAINER Kolla Project (https://launchpad.net/kolla)
{% if base_distro in ['fedora', 'centos', 'oraclelinux'] %}
RUN yum -y install memcached
&& yum clean all
{% elif base_distro in ['ubuntu', 'debian'] %}
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
&& /bin/false
{% endif %}
COPY start.sh /
COPY config-external.sh /opt/kolla/
CMD ["/start.sh"]

View File

@ -0,0 +1 @@
../../docker/common/memcached/config-external.sh

View File

@ -0,0 +1 @@
../../docker/common/memcached/start.sh