1 Star 0 Fork 1

Jason艾/EventSourcing.NetCore

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
docker-compose.build.yml 1.20 KB
一键复制 编辑 原始数据 按行查看 历史
Oskar Dudycz 提交于 2021-10-28 22:06 +08:00 . Fixed pgAdmin configuration
version: "3"
services:
#######################################################
# Postgres
#######################################################
postgres:
image: clkao/postgres-plv8
container_name: postgres
environment:
POSTGRES_PASSWORD: Password12!
ports:
- "5432:5432"
networks:
- postgres
pgadmin:
image: dpage/pgadmin4
container_name: pgadmin_container
environment:
PGADMIN_DEFAULT_EMAIL: ${PGADMIN_DEFAULT_EMAIL:-pgadmin4@pgadmin.org}
PGADMIN_DEFAULT_PASSWORD: ${PGADMIN_DEFAULT_PASSWORD:-admin}
PGADMIN_CONFIG_SERVER_MODE: 'False'
volumes:
- pgadmin:/var/lib/pgadmin
ports:
- "${PGADMIN_PORT:-5050}:80"
networks:
- postgres
backend:
build:
dockerfile: Dockerfile
context: .
container_name: event_sourcing_sample
ports:
- "5555:5000"
depends_on:
postgres:
condition: service_healthy
networks:
- postgres
networks:
postgres:
driver: bridge
volumes:
postgres:
pgadmin:
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

搜索帮助