-
Notifications
You must be signed in to change notification settings - Fork 4
/
compose.yaml
84 lines (81 loc) · 2.87 KB
/
compose.yaml
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
services:
eventstoredb:
# ==================================================================
# IMPORTANT NOTICE ABOUT PLATFORM COMPATIBILITY
#
# If you're using Apple Silicon or some other arm64 platform, the
# image used by this service will not work for you. You can either
# change the `image` setting to this:
#
# image: eventstore/eventstore:24.2.0-alpha-arm64v8
#
# Or use the `eventstoredb-arm64` service defined below.
# ------------------------------------------------------------------
# INSTRUCTIONS
#
# You can start the `eventstoredb` service using this command:
#
# docker compose up eventstoredb
#
# This will start EventStoreDB and expose the necessary ports. After
# starting this service, you can visit the web interface of
# EventStoreDB by going to http://localhost:2113/.
# ==================================================================
image: eventstore/eventstore:24.2.0
restart: unless-stopped
environment:
- EVENTSTORE_CLUSTER_SIZE=1
- EVENTSTORE_RUN_PROJECTIONS=All
- EVENTSTORE_START_STANDARD_PROJECTIONS=true
- EVENTSTORE_HTTP_PORT=2113
- EVENTSTORE_INSECURE=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
eventstoredb-arm64:
# ==================================================================
# IMPORTANT NOTICE ABOUT PLATFORM COMPATIBILITY
#
# This service is included for users of Apple Silicon (M1/M2/M3) or
# other arm64 platforms.
# ------------------------------------------------------------------
# INSTRUCTIONS
#
# You can start the `eventstoredb` service using this command:
#
# docker compose up eventstoredb-arm64
#
# This will start EventStoreDB and expose the necessary ports. After
# starting this service, you can visit the web interface of
# EventStoreDB by going to http://localhost:2113/.
# ==================================================================
image: eventstore/eventstore:24.2.0-alpha-arm64v8
restart: unless-stopped
environment:
- EVENTSTORE_CLUSTER_SIZE=1
- EVENTSTORE_RUN_PROJECTIONS=All
- EVENTSTORE_START_STANDARD_PROJECTIONS=true
- EVENTSTORE_HTTP_PORT=2113
- EVENTSTORE_INSECURE=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
volumes:
eventstore-volume-data:
eventstore-volume-logs: