28 lines
523 B
YAML
28 lines
523 B
YAML
mysql:
|
|
image: mysql
|
|
ports:
|
|
- "3306:3306"
|
|
environment:
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: yes
|
|
|
|
memcached:
|
|
image: memcached
|
|
ports:
|
|
- "11211:11211"
|
|
|
|
postgres:
|
|
image: postgres
|
|
ports:
|
|
- "5432:5432"
|
|
|
|
# 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
|