1 Star 0 Fork 1

Jason艾/EventSourcing.NetCore

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
docker-compose.ci.yml 2.36 KB
一键复制 编辑 原始数据 按行查看 历史
Oskar Dudycz 提交于 2022-02-26 17:54 +08:00 . Upgraded packages to latest versions:
version: "3"
services:
#######################################################
# Postgres
#######################################################
postgres:
image: clkao/postgres-plv8
container_name: postgres
environment:
POSTGRES_PASSWORD: Password12!
ports:
- "5432:5432"
networks:
- pg_network
#######################################################
# EventStoreDB
#######################################################
eventstore.db:
image: eventstore/eventstore:21.10.1-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:
- esdb_network
#######################################################
# Elastic Search
#######################################################
elasticsearch:
container_name: elastic_search
image: docker.elastic.co/elasticsearch/elasticsearch:7.13.3
environment:
- discovery.type=single-node
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
soft: -1
hard: -1
volumes:
- elastic-data:/usr/share/elasticsearch/data
ports:
- "9200:9200"
- "9300:9300"
networks:
- es_network
networks:
es_network:
driver: bridge
pg_network:
driver: bridge
esdb_network:
driver: bridge
volumes:
postgres:
eventstore-volume-data:
eventstore-volume-logs:
elastic-data:
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/payiz/EventSourcing.NetCore.git
git@gitee.com:payiz/EventSourcing.NetCore.git
payiz
EventSourcing.NetCore
EventSourcing.NetCore
added_marten_external_commands_handling

搜索帮助