From fba8c5c41718d353dde5677327be3617b1275565 Mon Sep 17 00:00:00 2001 From: Julian Simioni Date: Mon, 28 Aug 2017 14:28:30 -0400 Subject: [PATCH] Remove Docker specific pelias.json There is a default file managed by the pelias baseimage. --- Dockerfile | 2 -- pelias.json.docker | 18 ------------------ 2 files changed, 20 deletions(-) delete mode 100644 pelias.json.docker diff --git a/Dockerfile b/Dockerfile index f5abd602..063c2c92 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,8 +19,6 @@ RUN npm install && \ npm test && \ chmod -R a+rwX . -ADD pelias.json.docker pelias.json - # Don't run as root, because there's no reason to (https://docs.docker.com/engine/articles/dockerfile_best-practices/#user). # This also reveals permission problems on local Docker. RUN chown -R 9999:9999 ${WORK} diff --git a/pelias.json.docker b/pelias.json.docker deleted file mode 100644 index 7d012f02..00000000 --- a/pelias.json.docker +++ /dev/null @@ -1,18 +0,0 @@ -{ - "esclient": { - "hosts": [ - { - "env": "production", - "protocol": "http", - "host": "pelias-data-container", - "port": 9200 - }, - { - "env": "production", - "protocol": "http", - "host": "pelias-data-container", - "port": 9300 - } - ] - } -}