aboutsummaryrefslogtreecommitdiff
path: root/docker/docker-compose.yml
blob: c6bb45813f84267a92f1e28683be92699c3dcab7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
version: "3.4"
services:
  riot:
    image: vectorim/riot-web
    networks:
      - internal
    ports:
      - "8500:80"

  monolith:
    container_name: dendrite_monolith
    hostname: monolith
    entrypoint: ["bash", "./docker/services/monolith.sh", "--config", "/etc/dendrite/dendrite.yaml"]
    build: ./
    volumes:
      - ..:/build
      - ./build/bin:/build/bin
      - ../cfg:/etc/dendrite
    networks:
      - internal
    depends_on:
      - postgres
    ports:
      - "8008:8008"
      - "8448:8448"

  client_api_proxy:
    container_name: dendrite_client_api_proxy
    hostname: client_api_proxy
    entrypoint: ["bash", "./docker/services/client-api-proxy.sh"]
    build: ./
    volumes:
      - ..:/build
    networks:
      - internal
    depends_on:
      - postgres
      - sync_api
      - client_api
      - media_api
      - public_rooms_api
    ports:
      - "8008:8008"

  client_api:
    container_name: dendrite_client_api
    hostname: client_api
    entrypoint: ["bash", "./docker/services/client-api.sh"]
    build: ./
    volumes:
      - ..:/build
    depends_on:
      - postgres
      - room_server
    networks:
      - internal

  media_api:
    container_name: dendrite_media_api
    hostname: media_api
    entrypoint: ["bash", "./docker/services/media-api.sh"]
    build: ./
    volumes:
      - ..:/build
    depends_on:
      - postgres
    networks:
      - internal

  public_rooms_api:
    container_name: dendrite_public_rooms_api
    hostname: public_rooms_api
    entrypoint: ["bash", "./docker/services/public-rooms-api.sh"]
    build: ./
    volumes:
      - ..:/build
    depends_on:
      - postgres
    networks:
      - internal

  sync_api:
    container_name: dendrite_sync_api
    hostname: sync_api
    entrypoint: ["bash", "./docker/services/sync-api.sh"]
    build: ./
    volumes:
      - ..:/build
    depends_on:
      - postgres
    networks:
      - internal

  room_server:
    container_name: dendrite_room_server
    hostname: room_server
    entrypoint: ["bash", "./docker/services/room-server.sh"]
    build: ./
    volumes:
      - ..:/build
    depends_on:
      - postgres
    networks:
      - internal

  edu_server:
    container_name: dendrite_edu_server
    hostname: edu_server
    entrypoint: ["bash", "./docker/services/edu-server.sh"]
    build: ./
    volumes:
      - ..:/build
    networks:
      - internal

  federation_api_proxy:
    container_name: dendrite_federation_api_proxy
    hostname: federation_api_proxy
    entrypoint: ["bash", "./docker/services/federation-api-proxy.sh"]
    build: ./
    volumes:
      - ..:/build
    depends_on:
      - postgres
      - federation_api
      - federation_sender
      - media_api
    networks:
      - internal
    ports:
      - "8448:8448"

  federation_api:
    container_name: dendrite_federation_api
    hostname: federation_api
    entrypoint: ["bash", "./docker/services/federation-api.sh"]
    build: ./
    volumes:
      - ..:/build
    depends_on:
      - postgres
    networks:
      - internal

  federation_sender:
    container_name: dendrite_federation_sender
    hostname: federation_sender
    entrypoint: ["bash", "./docker/services/federation-sender.sh"]
    build: ./
    volumes:
      - ..:/build
    depends_on:
      - postgres
    networks:
      - internal
      
  key_server:
    container_name: dendrite_key_server
    hostname: key_server
    entrypoint: ["bash", "./docker/services/key-server.sh"]
    build: ./
    volumes:
        - ..:/build
    networks:
        - internal

  postgres:
    container_name: dendrite_postgres
    hostname: postgres
    image: postgres:9.5
    restart: always
    volumes:
      - ./postgres/create_db.sh:/docker-entrypoint-initdb.d/20-create_db.sh
    environment:
      POSTGRES_PASSWORD: itsasecret
      POSTGRES_USER: dendrite
    networks:
      - internal

  zookeeper:
    container_name: dendrite_zk
    hostname: zookeeper
    image: zookeeper
    networks:
      - internal

  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