Merge "Allow cinder-volume to be configured to use nfs on Centos"
This commit is contained in:
commit
989e9da68b
21
docker/cinder/cinder-rpcbind/Dockerfile.j2
Normal file
21
docker/cinder/cinder-rpcbind/Dockerfile.j2
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
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
|
Loading…
x
Reference in New Issue
Block a user