mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-10 16:33:11 -06:00
22 lines
479 B
YAML
22 lines
479 B
YAML
version: '2'
|
|
services:
|
|
zookeeper:
|
|
image: wurstmeister/zookeeper
|
|
ports:
|
|
- "2181:2181"
|
|
kafka:
|
|
image: wurstmeister/kafka:0.10.2.0
|
|
ports:
|
|
- "9092:9092"
|
|
environment:
|
|
KAFKA_ADVERTISED_HOST_NAME: localhost
|
|
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
postgres:
|
|
image: postgres:9.6
|
|
ports:
|
|
- "5432:5432"
|
|
environment:
|
|
POSTGRES_PASSWORD: SUPERSECRETPASSWORD
|