Skip to content

Instantly share code, notes, and snippets.

@sagoez
Last active March 1, 2024 23:18
Show Gist options
  • Select an option

  • Save sagoez/e1e57a3c7aca0abce3d0de34abe58901 to your computer and use it in GitHub Desktop.

Select an option

Save sagoez/e1e57a3c7aca0abce3d0de34abe58901 to your computer and use it in GitHub Desktop.

Revisions

  1. sagoez revised this gist Nov 10, 2023. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion EventStoreDB.yml
    Original file line number Diff line number Diff line change
    @@ -2,7 +2,7 @@ version: "3.8"
    services:
    eventstore.db:
    restart: always
    image: "ghcr.io/eventstore/eventstore:21.10.2-alpha-arm64v8"
    image: "ghcr.io/eventstore/eventstore:23.6.0-alpha-arm64v8"
    environment:
    - EVENTSTORE_CLUSTER_SIZE=1
    - EVENTSTORE_RUN_PROJECTIONS=All
  2. sagoez renamed this gist Nov 10, 2023. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  3. sagoez renamed this gist Feb 16, 2023. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  4. sagoez revised this gist Dec 25, 2022. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions docker-compose.yml
    Original file line number Diff line number Diff line change
    @@ -1,8 +1,8 @@
    version: "3.6"
    version: "3.8"
    services:
    eventstore.db:
    restart: always
    image: "ghcr.io/eventstore/eventstore:20.6.1-alpha.0.69-arm64v8"
    image: "ghcr.io/eventstore/eventstore:21.10.2-alpha-arm64v8"
    environment:
    - EVENTSTORE_CLUSTER_SIZE=1
    - EVENTSTORE_RUN_PROJECTIONS=All
  5. sagoez created this gist Dec 24, 2022.
    29 changes: 29 additions & 0 deletions docker-compose.yml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,29 @@
    version: "3.6"
    services:
    eventstore.db:
    restart: always
    image: "ghcr.io/eventstore/eventstore:20.6.1-alpha.0.69-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: