-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from telepat-io/fix-docker
deleted env vars, updated node version in Dockerfile
- Loading branch information
Showing
1 changed file
with
1 addition
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,28 +2,14 @@ | |
# | ||
# VERSION 0.1.2 | ||
|
||
FROM node:0.12 | ||
FROM node:4.8.3 | ||
MAINTAINER Andrei Marinescu <[email protected]> | ||
|
||
RUN mkdir /app | ||
|
||
COPY . /app | ||
WORKDIR /app | ||
RUN npm install | ||
# Apache Kafka, Elasticsearch and Couchbase default settings | ||
ENV TP_ES_HOST 127.0.0.1 | ||
ENV TP_ES_PORT 9200 | ||
ENV TP_ES_INDEX default | ||
|
||
ENV TP_KFK_HOST 127.0.0.1 | ||
ENV TP_KFK_PORT 2181 | ||
ENV TP_KFK_CLIENT "telepat-worker" | ||
|
||
ENV TP_REDIS_HOST 127.0.0.1 | ||
ENV TP_REDIS_PORT 6379 | ||
|
||
ENV TP_MAIN_DB "ElasticSearch" | ||
ENV TP_PW_SALT \$2a\$10\$N9qo8uLOickgx2ZMRZoMye | ||
|
||
WORKDIR /app | ||
|
||
|