Skip to content

Instantly share code, notes, and snippets.

@wwj718
Created July 17, 2017 03:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wwj718/aa9fbe5f128be5681fcebb1f29a9e731 to your computer and use it in GitHub Desktop.
Save wwj718/aa9fbe5f128be5681fcebb1f29a9e731 to your computer and use it in GitHub Desktop.
version: '3'
services:
postgres:
image: postgres:9.4-alpine
volumes:
- ./pgdata_new:/var/lib/postgresql/data
ports:
- '127.0.0.1:5432:5432'
elasticsearch:
#image: wwj2
image: nickstenning/elasticsearch-icu
volumes:
- ./esdata:/usr/share/elasticsearch/data
#volumn clean
ports:
- '127.0.0.1:9200:9200'
#mem_limit: 2g
#memswap_limit: 2g
rabbit:
image: rabbitmq:3.6-management-alpine
ports:
- '127.0.0.1:5672:5672'
- '127.0.0.1:15672:15672'
redis:
image: redis
ports:
- '127.0.0.1:6379:6379'
volumes:
- ./redis_data:/data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment