File tree Expand file tree Collapse file tree 2 files changed +17
-5
lines changed Expand file tree Collapse file tree 2 files changed +17
-5
lines changed Original file line number Diff line number Diff line change 1
- CONSUMERAPI_TAG = v4.5.0
2
- ADMINCLI_TAG = v2.2.3
1
+ BACKBONE_VERSION = 5.0.0
Original file line number Diff line number Diff line change 1
1
services :
2
2
consumer-api :
3
- image : ghcr.io/nmshd/backbone-consumer-api:${CONSUMERAPI_TAG }
3
+ image : ghcr.io/nmshd/backbone-consumer-api:${BACKBONE_VERSION }
4
4
container_name : consumer-api
5
5
hostname : consumer-api
6
6
environment :
@@ -20,6 +20,18 @@ services:
20
20
- source : Config
21
21
target : app/appsettings.override.json
22
22
23
+ event-handler-service :
24
+ image : ghcr.io/nmshd/backbone-event-handler:${BACKBONE_VERSION}
25
+ container_name : event-handler-service
26
+ depends_on :
27
+ database :
28
+ condition : service_started
29
+ rabbitmq :
30
+ condition : service_started
31
+ configs :
32
+ - source : Config
33
+ target : app/appsettings.override.json
34
+
23
35
# ## infrastructure ###
24
36
25
37
database :
@@ -55,17 +67,18 @@ services:
55
67
# ## seeds ###
56
68
57
69
seed-database :
70
+ container_name : seed-database
58
71
image : postgres
59
72
environment :
60
73
- PGPASSWORD=Passw0rd
61
- command : /bin/bash -c 'env && apt update -y && apt install -y wget && wget https://raw.githubusercontent.com/nmshd/backbone/capi/${CONSUMERAPI_TAG }/setup-db/setup-postgres.sql -O /setup-postgres.sql && psql -h postgres -U postgres -d enmeshed -f /setup-postgres.sql'
74
+ command : /bin/bash -c 'env && apt update -y && apt install -y wget && wget https://raw.githubusercontent.com/nmshd/backbone/${BACKBONE_VERSION }/setup-db/setup-postgres.sql -O /setup-postgres.sql && psql -h postgres -U postgres -d enmeshed -f /setup-postgres.sql'
62
75
depends_on :
63
76
database :
64
77
condition : service_healthy
65
78
66
79
seed-client :
67
80
container_name : seed-client
68
- image : ghcr.io/nmshd/backbone-admin-cli:${ADMINCLI_TAG }
81
+ image : ghcr.io/nmshd/backbone-admin-cli:${BACKBONE_VERSION }
69
82
depends_on :
70
83
consumer-api :
71
84
condition : service_healthy
You can’t perform that action at this time.
0 commit comments