Skip to content

Commit

Permalink
Merge pull request #3 from actionml/feature/service_name
Browse files Browse the repository at this point in the history
Service name for containers
  • Loading branch information
pferrel authored Sep 26, 2019
2 parents 1840e2d + 72596a1 commit 44e0048
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
version: '3'

services:

harness:
restart: always
image: actionml/harness:develop
container_name: harness
ports:
- "9090:9090"
environment:
Expand All @@ -26,6 +25,7 @@ services:
mongo:
restart: always
image: mongo:3.2
container_name: mongo
command: --logappend --logpath=/tmp/mongod.log
ports:
- "27017:27017"
Expand All @@ -36,6 +36,7 @@ services:
elasticsearch:
restart: always
image: elasticsearch:5.6.14-alpine
container_name: elasticsearch
environment:
ES_JAVA_OPTS: ${ES_JAVA_OPTS}
discovery.zen.ping.unicast.hosts: elasticsearch
Expand All @@ -49,6 +50,7 @@ services:
restart: always
#image: actionml/harness-cli:latest
image: actionml/harness-cli:develop
container_name: harness-cli
environment:
PATH: "$PATH:/harness-cli/harness-cli"
HARNESS_SERVER_ADDRESS: harness
Expand Down

0 comments on commit 44e0048

Please sign in to comment.