forked from Eventuous/eventuous
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
42 lines (37 loc) · 978 Bytes
/
docker-compose.yml
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
version: '3.7'
services:
esdb:
container_name: eventuous-esdb
image: eventstore/eventstore:latest #20.10.2-buster-slim
ports:
- '2113:2113'
- '1113:1113'
environment:
EVENTSTORE_INSECURE: 'true'
EVENTSTORE_CLUSTER_SIZE: 1
EVENTSTORE_EXT_TCP_PORT: 1113
EVENTSTORE_HTTP_PORT: 2113
EVENTSTORE_ENABLE_EXTERNAL_TCP: 'true'
EVENTSTORE_RUN_PROJECTIONS: all
EVENTSTORE_START_STANDARD_PROJECTIONS: "true"
EVENTSTORE_ENABLE_ATOM_PUB_OVER_HTTP: "true"
mongo:
container_name: eventuous-mongo
image: mongo
ports:
- '27017:27017'
environment:
MONGO_INITDB_ROOT_USERNAME: mongoadmin
MONGO_INITDB_ROOT_PASSWORD: secret
rabbitmq:
container_name: eventuous-rabbitmq
hostname: rabbitmq
image: rabbitmq:management-alpine
ports:
- '4369:4369'
- '5672:5672'
- '25672:25672'
- '15672:15672'
networks:
default:
name: eventuous-network