kolla-ansible/docker/cinder/cinder-rpcbind/Dockerfile.j2
Ryan Hallisey eab0f1300d Allow cinder-volume to be configured to use nfs on Centos
Closes-Bug: 1548508
Partially implements: blueprint  nfs-support-in-cinder

Change-Id: I3b66252290e61f74ea13889fe136ac74863110f4
2016-02-24 03:19:50 -05:00

22 lines
430 B
Django/Jinja

FROM {{ namespace }}/{{ image_prefix }}cinder-base:{{ tag }}
MAINTAINER {{ maintainer }}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
RUN yum -y install \
nfs-utils \
nfs-utils-lib \
&& yum clean all
{% elif base_distro in ['ubuntu', 'debian'] %}
RUN apt-get install -y --no-install-recommends \
rpcbind \
&& apt-get clean
{% endif %}
{{ include_footer }}
USER cinder