Skip to content

Instantly share code, notes, and snippets.

@lanekatris
Created January 10, 2022 04:36
Show Gist options
  • Save lanekatris/46423e9e4c928cbd0f734bf23ba45b80 to your computer and use it in GitHub Desktop.
Save lanekatris/46423e9e4c928cbd0f734bf23ba45b80 to your computer and use it in GitHub Desktop.
event store docker compose
version: "3.4"
services:
eventstore.db:
image: eventstore/eventstore:20.10.2-buster-slim
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
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