-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathdocker-compose.yml
58 lines (55 loc) · 1.63 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
version: "3"
services:
#######################################################
# EventStoreDB - Event Store
#######################################################
eventstore.db:
image: eventstore/eventstore:21.10.0-buster-slim
# use this image if you're running ARM-based proc like Apple M1
# image: ghcr.io/eventstore/eventstore:21.10.0-alpha-arm64v8
environment:
- EVENTSTORE_CLUSTER_SIZE=1
- EVENTSTORE_RUN_PROJECTIONS=All
- EVENTSTORE_START_STANDARD_PROJECTIONS=true
- EVENTSTORE_EXT_TCP_PORT=1113
- EVENTSTORE_HTTP_PORT=2113
- EVENTSTORE_INSECURE=true
- EVENTSTORE_ENABLE_EXTERNAL_TCP=true
- EVENTSTORE_ENABLE_ATOM_PUB_OVER_HTTP=true
ports:
- '1113:1113'
- '2113:2113'
volumes:
- type: volume
source: eventstore-volume-data
target: /var/lib/eventstore
- type: volume
source: eventstore-volume-logs
target: /var/log/eventstore
networks:
- eventstore.db
#######################################################
# RavenDB - Read models
#######################################################
raven.db:
container_name: raven_db
image: ravendb/ravendb:5.3-ubuntu-latest
environment:
- RAVEN_Security_UnsecuredAccessAllowed=PrivateNetwork
- RAVEN_Setup_Mode=None
- RAVEN_License_Eula_Accepted=true
volumes:
- ravendb-data:/opt/RavenDB/Server/RavenData
ports:
- "8080:8080"
networks:
- raven.db
networks:
eventstore.db:
driver: bridge
raven.db:
driver: bridge
volumes:
eventstore-volume-data:
eventstore-volume-logs:
ravendb-data: