1 Star 0 Fork 2

MyCode/modular-monolith-with-ddd

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
docker-compose.yml 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
Kamil Grzybek 提交于 2020-11-26 22:26 . Add Docker support
version: '3.4'
services:
backend:
container_name: mymeetings_backend
build:
context: ./src/
ports:
- "5000:80"
networks:
- starfish-crm-network
environment:
- Meetings_MeetingsConnectionString=Server=mymeetingsdb,1433;Database=MyMeetings;User=sa;Password=Test@12345
depends_on:
- migrator
restart: on-failure
mymeetingsdb:
build: ./src/Database/
ports:
- 1445:1433
networks:
- starfish-crm-network
migrator:
container_name: mymeetings_db_migrator
build:
context: ./src/Database/
dockerfile: Dockerfile_DatabaseMigrator
networks:
- starfish-crm-network
environment:
- ASPNETCORE_MyMeetings_IntegrationTests_ConnectionString=Server=mymeetingsdb,1433;Database=MyMeetings;User=sa;Password=Test@12345
command: ["./wait-for-it.sh", "mymeetingsdb:1433", "--timeout=60", "--", "/bin/bash", "/entrypoint_DatabaseMigrator.sh"]
restart: on-failure
networks:
starfish-crm-network:
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/le1561782446/modular-monolith-with-ddd.git
[email protected]:le1561782446/modular-monolith-with-ddd.git
le1561782446
modular-monolith-with-ddd
modular-monolith-with-ddd
master

搜索帮助