2015-07-06 04:46:43 +00:00
|
|
|
mysql:
|
|
|
|
image: mysql
|
|
|
|
ports:
|
|
|
|
- "3306:3306"
|
|
|
|
environment:
|
2015-07-06 05:20:25 +00:00
|
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: yes
|
2015-07-06 04:46:43 +00:00
|
|
|
|
|
|
|
memcached:
|
|
|
|
image: memcached
|
|
|
|
ports:
|
|
|
|
- "11211:11211"
|
|
|
|
|
|
|
|
postgres:
|
|
|
|
image: postgres
|
|
|
|
ports:
|
|
|
|
- "5432:5432"
|
2015-08-04 14:58:32 +00:00
|
|
|
|
|
|
|
# advertised host env variable must be set at runtime, ie,
|
|
|
|
# ADVERTISED_HOST=`boot2docker ip` docker-compose up -d
|
|
|
|
kafka:
|
|
|
|
image: spotify/kafka
|
|
|
|
ports:
|
|
|
|
- "2181:2181"
|
|
|
|
- "9092:9092"
|
|
|
|
environment:
|
|
|
|
ADVERTISED_HOST:
|
|
|
|
ADVERTISED_PORT: 9092
|
2015-09-11 20:24:53 +00:00
|
|
|
|
2015-09-16 00:25:56 +00:00
|
|
|
rabbitmq:
|
|
|
|
image: rabbitmq:3-management
|
|
|
|
hostname: docker_rabbit
|
|
|
|
ports:
|
|
|
|
- "15672:15672"
|
|
|
|
- "5672:5672"
|
|
|
|
|
2015-09-11 20:24:53 +00:00
|
|
|
opentsdb:
|
|
|
|
image: lancope/opentsdb
|
|
|
|
ports:
|
|
|
|
- "24242:4242"
|