Skip to content

Commit 8757406

Browse files
committed
Use external queues.txt file
use latest images for platform
1 parent b8d078b commit 8757406

File tree

5 files changed

+11
-26
lines changed

5 files changed

+11
-26
lines changed

src/Helper/BusRegistrationConfiguratorExt.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public static void SetupTransport(this IBusRegistrationConfigurator x, string[]
3939
{
4040
x.UsingRabbitMq((context, cfg) =>
4141
{
42-
cfg.Host("localhost", 56721, "/", h =>
42+
cfg.Host("localhost", 33721, "/", h =>
4343
{
4444
h.Username("guest");
4545
h.Password("guest");

src/compose-azure.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1 @@
11
name: particular-platform-masstransit-recoverability-azure
2-
3-
configs:
4-
queues:
5-
content: |
6-
billorder_error
7-
prepareorder_error
8-
processorder_error
9-
shiporder_error

src/compose-rabbitmq.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ services:
1818
- rabbitmq-data:/var/lib/rabbitmq
1919
- rabbitmq-logs:/var/log/rabbitmq
2020
ports:
21-
- 56721:5672
22-
- 15672:15672
21+
- 33721:5672
2322
configs:
2423
- source: plugins
2524
target: /etc/rabbitmq/enabled_plugins

src/docker-compose-base.yml

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
services:
22
service-control-db:
33
container_name: servicecontrol-db
4-
image: particular/servicecontrol-ravendb:6
4+
image: particular/servicecontrol-ravendb:latest
55
volumes:
66
- sc-data:/var/lib/ravendb/data
77
service-control:
88
depends_on:
99
service-control-db:
1010
condition: service_healthy
1111
container_name: servicecontrol
12-
image: particular/servicecontrol:6
12+
image: particular/servicecontrol:latest
1313
command: "--setup-and-run"
1414
ports:
1515
- 33333:33333
@@ -24,10 +24,9 @@ services:
2424
service-control:
2525
condition: service_healthy
2626
container_name: masstransit-connector
27-
image: particular/servicecontrol-connector-masstransit:0.1.0-alpha.3
28-
configs:
29-
- source: queues
30-
target: /app/queues.txt
27+
image: particular/servicecontrol-connector-masstransit:0.1.0-alpha.4
28+
volumes:
29+
- ./queues.txt:/app/queues.txt:ro
3130
environment:
3231
- TRANSPORT_TYPE
3332
- CONNECTION_STRING
@@ -46,12 +45,3 @@ services:
4645

4746
volumes:
4847
sc-data:
49-
50-
configs:
51-
queues:
52-
content: |
53-
bill-order_error
54-
prepare-order_error
55-
process-order_error
56-
ship-order_error
57-

src/queues.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
bill-order_error
2+
prepare-order_error
3+
process-order_error
4+
ship-order_error

0 commit comments

Comments
 (0)