Add file level restore capability to CentOS, install dependencies for NFS mounts, same improvements to docker container

This commit is contained in:
ronivay
2018-10-09 15:32:06 +03:00
parent 1765375cb8
commit 6351dbf933
4 changed files with 31 additions and 4 deletions

View File

@@ -15,7 +15,11 @@ RUN yum -y install yarn
RUN yum -y install epel-release
# build dependencies, git for fetching source and redis server for storing data
RUN yum -y install gcc gcc-c++ make openssl-devel redis libpng-devel python git
RUN yum -y install gcc gcc-c++ make openssl-devel redis libpng-devel python git nfs-utils
# libvhdi-tools for file-level restore
RUN rpm -ivh https://forensics.cert.org/cert-forensics-tools-release-el7.rpm
RUN yum --enablerepo=forensics install -y libvhdi-tools
# monit to keep an eye on processes
RUN yum -y install monit

View File

@@ -8,3 +8,7 @@ check process xo-server with pidfile /var/run/xo-server.pid
check process redis with pidfile /var/run/redis_6379.pid
start program = "/usr/bin/redis-server /etc/redis.conf --daemonize yes"
stop program = "/usr/bin/redis-cli shutdown"
check process rpcbind
matching "rpcbind"
start program = "/usr/sbin/rpcbind"