
This patch contains keepalived container for yum-based distros. Change-Id: I8e3ea7a61ad6c27b25b635e7aeeff5ef04a807b4 Implements: blueprint keepalived-container
14 lines
303 B
Docker
Executable File
14 lines
303 B
Docker
Executable File
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%base:%%KOLLA_TAG%%
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
RUN yum -y install \
|
|
hostname \
|
|
keepalived \
|
|
socat \
|
|
&& yum clean all
|
|
|
|
COPY keepalived.conf /etc/keepalived/
|
|
|
|
COPY start.sh check_alive.sh /
|
|
CMD ["/start.sh"]
|