Last active
March 1, 2024 23:18
-
-
Save sagoez/e1e57a3c7aca0abce3d0de34abe58901 to your computer and use it in GitHub Desktop.
EventStoreDB docker compose for M1 Mac
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.8" | |
services: | |
eventstore.db: | |
restart: always | |
image: "ghcr.io/eventstore/eventstore:23.6.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" | |
network_mode: "bridge" | |
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: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment