Skip to content

Commit

Permalink
[Aggregator] Tested and Fixed docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
hidayatarg committed Oct 15, 2023
1 parent 2f70020 commit 64cb4e3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"dotnetRunMessages": true,
"launchBrowser": true,
"launchUrl": "swagger",
"applicationUrl": "http://localhost:5140",
"applicationUrl": "http://localhost:5005",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
Expand All @@ -24,7 +24,7 @@
"dotnetRunMessages": true,
"launchBrowser": true,
"launchUrl": "swagger",
"applicationUrl": "https://localhost:7261;http://localhost:5140",
"applicationUrl": "https://localhost:5005;http://localhost:5140",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
Expand Down
2 changes: 1 addition & 1 deletion src/ApiGateways/Shopping.Aggregator/appsettings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"ApiSetting":{
"ApiSettings":{
"CatalogUrl": "http://localhost:8000",
"BasketUrl": "http://localhost:8001",
"OrderingUrl": "http://localhost:8004"
Expand Down
8 changes: 4 additions & 4 deletions src/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ services:
depends_on:
- discountdb

order.api:
image: ${DOCKER_REGISTRY-}orderpi
container_name: order.api
ordering.api:
image: ${DOCKER_REGISTRY-}orderingapi
container_name: ordering.api
environment:
- ASPNETCORE_ENVIRONMENT=Development
- 'EventBusSettings:HostAddress=amqp://admin:admin@rabbitmq:5672'
Expand Down Expand Up @@ -139,7 +139,7 @@ services:
- catalog.api
- basket.api
- discount.api
- discount.grpc
- ordering.api

rabbitmq:
image: rabbitmq:3-management-alpine
Expand Down

0 comments on commit 64cb4e3

Please sign in to comment.