Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Commit df21bc8

Browse files
Merge pull request #317 from SychevIgor/SychevIgor/NobuildFix
NoBuild missed some images
2 parents 38ad91a + 30644de commit df21bc8

File tree

1 file changed

+32
-5
lines changed

1 file changed

+32
-5
lines changed

docker-compose.nobuild.yml

Lines changed: 32 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,24 @@ services:
2323
image: eshop/ordering.api
2424
depends_on:
2525
- sql.data
26+
- rabbitmq
27+
28+
marketing.api:
29+
image: eshop/marketing.api
30+
depends_on:
31+
- sql.data
32+
- nosql.data
33+
- identity.api
34+
- rabbitmq
2635

2736
webspa:
2837
image: eshop/webspa
2938
depends_on:
39+
- catalog.api
40+
- ordering.api
3041
- identity.api
3142
- basket.api
43+
- marketing.api
3244

3345
webmvc:
3446
image: eshop/webmvc
@@ -37,20 +49,35 @@ services:
3749
- ordering.api
3850
- identity.api
3951
- basket.api
52+
- marketing.api
53+
54+
webstatus:
55+
image: eshop/webstatus
56+
57+
payment.api:
58+
image: eshop/payment.api
59+
depends_on:
60+
- rabbitmq
61+
62+
locations.api:
63+
image: eshop/locations.api
64+
depends_on:
65+
- nosql.data
66+
- rabbitmq
4067

4168
sql.data:
4269
image: microsoft/mssql-server-linux
43-
70+
71+
nosql.data:
72+
image: mongo
73+
4474
basket.data:
4575
image: redis
4676
ports:
4777
- "6379:6379"
4878

4979
rabbitmq:
50-
image: rabbitmq
80+
image: rabbitmq:3-management
5181
ports:
5282
- "5672:5672"
5383

54-
webstatus:
55-
image: eshop/webstatus
56-

0 commit comments

Comments
 (0)