This repository has been archived by the owner on Dec 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 574
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee0edb9
commit c6d4411
Showing
6 changed files
with
775 additions
and
648 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 |
---|---|---|
@@ -1,36 +1,49 @@ | ||
# set CUSTOM_NETWORK_NAME to the name of the custom Docker network | ||
version: '2' | ||
|
||
elasticsearch: | ||
container_name: elasticsearch | ||
restart: always | ||
image: elasticsearch:2.1.1 | ||
net: ${CUSTOM_NETWORK_NAME} | ||
command: elasticsearch -Des.network.host=0.0.0.0 | ||
ports: | ||
- "9200:9200" | ||
volumes: | ||
- elasticsearch_data:/usr/share/elasticsearch/data | ||
services: | ||
elasticsearch: | ||
container_name: elasticsearch | ||
restart: always | ||
image: elasticsearch:2.1.1 | ||
networks: | ||
- backbone | ||
command: elasticsearch -Des.network.host=0.0.0.0 | ||
ports: | ||
- "9200:9200" | ||
volumes: | ||
- elasticsearch_data:/usr/share/elasticsearch/data | ||
|
||
logstash: | ||
container_name: logstash | ||
restart: always | ||
image: accenture/adop-logstash:0.1.0 | ||
net: ${CUSTOM_NETWORK_NAME} | ||
environment: | ||
- "constraint:tier==public" | ||
- LS_HEAP_SIZE=1024m | ||
ports: | ||
- "12201:12201/udp" | ||
- "25826:25826/udp" | ||
- "5000:5000/tcp" | ||
logstash: | ||
container_name: logstash | ||
restart: always | ||
image: accenture/adop-logstash:0.1.0 | ||
networks: | ||
- backbone | ||
environment: | ||
- "constraint:tier==public" | ||
- LS_HEAP_SIZE=1024m | ||
ports: | ||
- "12201:12201/udp" | ||
- "25826:25826/udp" | ||
- "5000:5000/tcp" | ||
|
||
kibana: | ||
container_name: kibana | ||
restart: always | ||
image: kibana:4.3.1 | ||
net: ${CUSTOM_NETWORK_NAME} | ||
command: kibana | ||
environment: | ||
- ELASTICSEARCH_URL=http://elasticsearch:9200 | ||
ports: | ||
- "5601:5601" | ||
kibana: | ||
container_name: kibana | ||
restart: always | ||
image: kibana:4.3.1 | ||
networks: | ||
- backbone | ||
command: kibana | ||
environment: | ||
- ELASTICSEARCH_URL=http://elasticsearch:9200 | ||
ports: | ||
- "5601:5601" | ||
|
||
networks: | ||
backbone: | ||
external: | ||
name: ${CUSTOM_NETWORK_NAME} | ||
|
||
volumes: | ||
elasticsearch_data: | ||
driver: local |
Oops, something went wrong.