Skip to content

Commit 110dd3a

Browse files
Merge branch 'main' into feat-bump-min-api-version
2 parents b7fb956 + a69daf3 commit 110dd3a

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

.github/workflows/ci-instrumentation-with-services.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -212,12 +212,11 @@ jobs:
212212
build: true
213213
services:
214214
redis:
215-
image: redis:6.2
215+
image: bitnamilegacy/redis:6.2
216216
ports:
217217
- 6379:6379
218-
command: ["redis-server", "--appendonly", "yes", "--requirepass", "${REDIS_PASSWORD}"]
219218
options: >-
220-
--health-cmd "sh -c 'redis-cli -a \"$REDIS_PASSWORD\" ping | grep PONG'"
219+
--health-cmd "redis-cli ping"
221220
--health-interval 10s
222221
--health-timeout 5s
223222
--health-retries 5

docker-compose.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -198,19 +198,13 @@ services:
198198
- postgres_socket:/var/run/postgresql
199199

200200
redis:
201-
image: redis:6.2
201+
image: bitnamilegacy/redis:6.2
202202
environment:
203203
- REDIS_PASSWORD=passw0rd
204204
volumes:
205205
- redis_data:/data
206206
ports:
207207
- "16379:6379"
208-
command: ["redis-server", "--appendonly", "yes", "--requirepass", "${REDIS_PASSWORD}"]
209-
options: >-
210-
--health-cmd "sh -c 'redis-cli -a \"$REDIS_PASSWORD\" ping | grep PONG'"
211-
--health-interval 10s
212-
--health-timeout 5s
213-
--health-retries 5
214208

215209
rabbitmq:
216210
image: rabbitmq:3.8-alpine

0 commit comments

Comments
 (0)