Created
September 19, 2016 19:08
-
-
Save xingh/7bd19adeb1dfce9e6fe8221bee9d50d7 to your computer and use it in GitHub Desktop.
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
BaseEvents: | |
image: "eventstore/eventstore:latest" | |
BaseQueue: | |
image: "rabbitmq:latest" | |
ports: | |
- "5672:5672" | |
- "15672:15672" | |
expose: | |
- "5672" | |
hostname: rabbitmq | |
BaseData: | |
image: "busybox:latest" | |
volumes: | |
- /base/data/ | |
- /base/logs/ | |
- /base/index/ | |
BaseEngine: | |
image: "mono:latest" | |
environment: | |
ELASTICSEARCH_HOST: 127.0.0.1 | |
SOLR_HOST: 127.0.0.1 | |
SearchWebUserUI: | |
image: "nginx:latest" | |
ports: | |
- "8080:80" | |
expose: | |
- "80" | |
SearchWebAdminUI: | |
image: "mono:latest" | |
ports: | |
- "80:8000" | |
expose: | |
- "8000" | |
SearchIndexElastic: | |
image: "elasticsearch:latest" | |
ports: | |
- "9200:9200" | |
expose: | |
- "9200" | |
SearchIndexSolr: | |
image: "solr:latest" | |
ports: | |
- "8983:8983" | |
expose: | |
- "8983" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment