Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions LoanApplication/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
services:
seeder:
restart: always
image: "docker.eventstore.com/education/loan-application:0.1.0"
image: "docker.eventstore.com/education/loan-application:0.2.0"
environment:
- "DB_URL=${DB_URL?Error: DB_URL must be specified!}"
command: ./shadowtraffic.sh
creditcheck:
restart: always
image: "docker.eventstore.com/education/loan-application:0.1.0"
image: "docker.eventstore.com/education/loan-application:0.2.0"
environment:
- "ESDB_URL=${DB_URL?Error: DB_URL must be specified!}"
command: python3 CreditCheck.py
decider:
restart: always
image: "docker.eventstore.com/education/loan-application:0.1.0"
image: "docker.eventstore.com/education/loan-application:0.2.0"
environment:
- "ESDB_URL=${DB_URL?Error: DB_URL must be specified!}"
command: python3 LoanDecider.py
underwriter:
restart: always
image: "docker.eventstore.com/education/loan-application:0.1.0"
image: "docker.eventstore.com/education/loan-application:0.2.0"
environment:
- "ESDB_URL=${DB_URL?Error: DB_URL must be specified!}"
command: python3 Underwriting.py
Loading