berngp / docker-zabbix

Docker Container running a Zabbix Server and Zabbix Web UI.
Other
160 stars 66 forks source link

RUN command missing in the Docker file #20

Closed phiroict closed 9 years ago

phiroict commented 9 years ago

Line 65 in the Dockerfile does not have the RUN command prepended to the commandline so docker build fails with a "YUM" not found error. The line is : yum clean all && rm -rf /tmp/*

Should be: RUN yum clean all && rm -rf /tmp/*

berngp commented 9 years ago

Thanks for the pull request, closing this issue.