Add Dockerfile template for haproxy

Change-Id: If269a483a1f2a9fd1258fdcb90b139d137037dfd
Partially-Implements: blueprint dockerfile-template
This commit is contained in:
weiyu 2015-08-12 21:35:59 +08:00
parent 671014e7a6
commit 08b31dcc25
4 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,20 @@
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 \
haproxy \
&& 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 ensure_latest_config.sh /opt/kolla/
CMD ["/start.sh"]

View File

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

View File

@ -0,0 +1 @@
../../docker/common/haproxy/ensure_latest_config.sh

View File

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