Skip to content

Commit 227b8b9

Browse files
feat: Updated docker-compose images version
1 parent 394940b commit 227b8b9

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

docker/docker-compose.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
version: "3"
22
services:
3-
43
mongodb:
54
image: mongo
65
container_name: mongodb
@@ -19,7 +18,7 @@ services:
1918

2019
api:
2120
privileged: true
22-
image: "ghcr.io/implerhq/impler/api:1.8.0"
21+
image: "ghcr.io/implerhq/impler/api:1.8.1"
2322
depends_on:
2423
- mongodb
2524
- rabbitmq
@@ -57,7 +56,7 @@ services:
5756
- impler
5857

5958
queue-manager:
60-
image: "ghcr.io/implerhq/impler/queue-manager:1.8.0"
59+
image: "ghcr.io/implerhq/impler/queue-manager:1.8.1"
6160
depends_on:
6261
- api
6362
- rabbitmq
@@ -85,7 +84,7 @@ services:
8584
- impler
8685

8786
widget:
88-
image: "ghcr.io/implerhq/impler/widget:1.8.0"
87+
image: "ghcr.io/implerhq/impler/widget:1.8.1"
8988
depends_on:
9089
- api
9190
container_name: widget
@@ -103,7 +102,7 @@ services:
103102
embed:
104103
depends_on:
105104
- widget
106-
image: "ghcr.io/implerhq/impler/embed:1.8.0"
105+
image: "ghcr.io/implerhq/impler/embed:1.8.1"
107106
container_name: embed
108107
environment:
109108
WIDGET_URL: ${WIDGET_BASE_URL}
@@ -115,7 +114,7 @@ services:
115114
web:
116115
depends_on:
117116
- api
118-
image: "ghcr.io/implerhq/impler/web:1.8.0"
117+
image: "ghcr.io/implerhq/impler/web:1.8.1"
119118
container_name: web
120119
environment:
121120
NEXT_PUBLIC_API_BASE_URL: ${API_ROOT_URL}
@@ -127,15 +126,15 @@ services:
127126
- 4200:4200
128127
networks:
129128
- impler
130-
129+
131130
rabbitmq:
132131
image: rabbitmq:3-alpine
133-
container_name: 'rabbitmq'
132+
container_name: "rabbitmq"
134133
restart: always
135134
ports:
136135
- 5672:5672
137136
healthcheck:
138-
test: [ "CMD", "nc", "-z", "localhost", "5672" ]
137+
test: ["CMD", "nc", "-z", "localhost", "5672"]
139138
interval: 5s
140139
timeout: 15s
141140
retries: 1

0 commit comments

Comments
 (0)