This is an automated email from the ASF dual-hosted git repository. shuber pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/unomi.git
commit f89312cef7cb23b7ad1cfd9792404b9a29feb65c Author: Mike Ghen <[email protected]> AuthorDate: Fri May 3 21:29:54 2019 -0400 Remove dependancy on mikeghen/unomi, added to readme --- docker/README.md | 7 +++---- docker/docker-compose.yml | 3 +-- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/docker/README.md b/docker/README.md index 343ddb7..0266199 100644 --- a/docker/README.md +++ b/docker/README.md @@ -1,14 +1,13 @@ # Unomi Docker Image - - [](https://microbadger.com/images/mikeghen/unomi:1.3 "Get your own version badge on microbadger.com") -# Running Unomi +## Running Unomi Unomi requires ElasticSearch so it is recommended to run Unomi and ElasticSearch using docker-compose: ``` docker-compose up ``` +You will need to wait while Docker builds the containers and they boot up (ES will take a minute or two). Once they are up you can check that the Unomi services are available by visiting http://localhost:8181/cxs in a web browser. -# Environment variables +## Environment variables When you start the `unomi` image, you can adjust the configuration of the Unomi instance by passing one or more environment variables on the `docker run` command line. diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 61ee644..5858b79 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -15,8 +15,7 @@ services: - "9200:9200" unomi: - # TODO: Replace with official image - image: mikeghen/unomi:1.3 + build: . container_name: unomi environment: - ELASTICSEARCH_HOST=elasticsearch
