diff --git a/README.md b/README.md index dfc73bb..17fa220 100644 --- a/README.md +++ b/README.md @@ -19,9 +19,9 @@ Ansible role to install Elasticsearch on Debian (Ubuntu) and Enterprise Linux (R Operating System | Release | Status | ---------------- | ------- | ------ | centos | 6 | ![Vagrant passed](https://img.shields.io/badge/vagrant-passed-brightgreen.svg?style=flat-square) ![Docker passed](https://img.shields.io/badge/docker-passed-brightgreen.svg?style=flat-square) | -centos | 7 | ![Vagrant passed](https://img.shields.io/badge/vagrant-passed-brightgreen.svg?style=flat-square) ![Docker failed](https://img.shields.io/badge/docker-failed-brightred.svg?style=flat-square) | -debian | wheezy | ![Vagrant passed](https://img.shields.io/badge/vagrant-passed-brightgreen.svg?style=flat-square) ![Docker failed](https://img.shields.io/badge/docker-fauked-brightred.svg?style=flat-square) | -debian | jessie | ![Vagrant failed](https://img.shields.io/badge/vagrant-failed-brightred.svg?style=flat-square) ![Docker passed](https://img.shields.io/badge/docker-passed-brightgreen.svg?style=flat-square) | +centos | 7 | ![Vagrant passed](https://img.shields.io/badge/vagrant-passed-brightgreen.svg?style=flat-square) ![Docker failed](https://img.shields.io/badge/docker-failed-red.svg?style=flat-square) | +debian | wheezy | ![Vagrant passed](https://img.shields.io/badge/vagrant-passed-brightgreen.svg?style=flat-square) ![Docker failed](https://img.shields.io/badge/docker-failed-red.svg?style=flat-square) | +debian | jessie | ![Vagrant failed](https://img.shields.io/badge/vagrant-failed-red.svg?style=flat-square) ![Docker passed](https://img.shields.io/badge/docker-passed-brightgreen.svg?style=flat-square) | ubuntu | precise | ![Vagrant passed](https://img.shields.io/badge/vagrant-passed-brightgreen.svg?style=flat-square) ![Docker passed](https://img.shields.io/badge/docker-passed-brightgreen.svg?style=flat-square) | ubuntu | trusty | ![Vagrant passed](https://img.shields.io/badge/vagrant-passed-brightgreen.svg?style=flat-square) ![Docker passed](https://img.shields.io/badge/docker-passed-brightgreen.svg?style=flat-square) | diff --git a/tests/debian-jessie.Dockerfile b/tests/debian-jessie.Dockerfile index de69e62..fc8b1af 100644 --- a/tests/debian-jessie.Dockerfile +++ b/tests/debian-jessie.Dockerfile @@ -2,5 +2,6 @@ FROM williamyeh/ansible:debian8-onbuild MAINTAINER Aloysius Lim +RUN apt-get update && apt-get install -y curl EXPOSE 9200 CMD ["tests/test.sh"] diff --git a/tests/debian-wheezy.Dockerfile b/tests/debian-wheezy.Dockerfile index 976e806..b95262e 100644 --- a/tests/debian-wheezy.Dockerfile +++ b/tests/debian-wheezy.Dockerfile @@ -2,5 +2,6 @@ FROM williamyeh/ansible:debian7-onbuild MAINTAINER Aloysius Lim +RUN apt-get update && apt-get install -y curl EXPOSE 9200 CMD ["tests/test.sh"] diff --git a/tests/ubuntu-precise.Dockerfile b/tests/ubuntu-precise.Dockerfile index 447a184..77a2fc0 100644 --- a/tests/ubuntu-precise.Dockerfile +++ b/tests/ubuntu-precise.Dockerfile @@ -2,5 +2,6 @@ FROM williamyeh/ansible:ubuntu12.04-onbuild MAINTAINER Aloysius Lim +RUN apt-get update && apt-get install -y curl EXPOSE 9200 CMD ["tests/test.sh"] diff --git a/tests/ubuntu-trusty.Dockerfile b/tests/ubuntu-trusty.Dockerfile index 027c3bf..0238c2a 100644 --- a/tests/ubuntu-trusty.Dockerfile +++ b/tests/ubuntu-trusty.Dockerfile @@ -2,5 +2,6 @@ FROM williamyeh/ansible:ubuntu14.04-onbuild MAINTAINER Aloysius Lim +RUN apt-get update && apt-get install -y curl EXPOSE 9200 CMD ["tests/test.sh"]