Skip to content

Instantly share code, notes, and snippets.

@xingh
Created September 19, 2016 19:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xingh/7bd19adeb1dfce9e6fe8221bee9d50d7 to your computer and use it in GitHub Desktop.
Save xingh/7bd19adeb1dfce9e6fe8221bee9d50d7 to your computer and use it in GitHub Desktop.
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