2020-05-21 12:02:28 +00:00
|
|
|
version: "3.4"
|
|
|
|
services:
|
2020-10-27 13:58:58 +00:00
|
|
|
# PostgreSQL is needed for both polylith and monolith modes.
|
2020-05-21 12:02:28 +00:00
|
|
|
postgres:
|
|
|
|
hostname: postgres
|
2021-01-04 10:36:36 +00:00
|
|
|
image: postgres:11
|
2020-05-21 12:02:28 +00:00
|
|
|
restart: always
|
|
|
|
volumes:
|
2020-06-05 18:00:30 +00:00
|
|
|
- ./postgres/create_db.sh:/docker-entrypoint-initdb.d/20-create_db.sh
|
2020-10-13 08:54:07 +00:00
|
|
|
# To persist your PostgreSQL databases outside of the Docker image, to
|
|
|
|
# prevent data loss, you will need to add something like this:
|
|
|
|
# - ./path/to/persistent/storage:/var/lib/postgresql/data
|
2020-05-21 12:02:28 +00:00
|
|
|
environment:
|
|
|
|
POSTGRES_PASSWORD: itsasecret
|
|
|
|
POSTGRES_USER: dendrite
|
|
|
|
networks:
|
|
|
|
- internal
|
|
|
|
|
2020-10-27 13:58:58 +00:00
|
|
|
# Zookeeper is only needed for polylith mode!
|
2020-05-21 12:02:28 +00:00
|
|
|
zookeeper:
|
|
|
|
hostname: zookeeper
|
|
|
|
image: zookeeper
|
|
|
|
networks:
|
|
|
|
- internal
|
|
|
|
|
2020-10-27 13:58:58 +00:00
|
|
|
# Kafka is only needed for polylith mode!
|
2020-05-21 12:02:28 +00:00
|
|
|
kafka:
|
|
|
|
container_name: dendrite_kafka
|
|
|
|
hostname: kafka
|
|
|
|
image: wurstmeister/kafka
|
|
|
|
environment:
|
|
|
|
KAFKA_ADVERTISED_HOST_NAME: "kafka"
|
|
|
|
KAFKA_DELETE_TOPIC_ENABLE: "true"
|
|
|
|
KAFKA_ZOOKEEPER_CONNECT: "zookeeper:2181"
|
|
|
|
depends_on:
|
|
|
|
- zookeeper
|
|
|
|
networks:
|
|
|
|
- internal
|
|
|
|
|
|
|
|
networks:
|
|
|
|
internal:
|
|
|
|
attachable: true
|