We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2894d85 commit 9f3b1d4Copy full SHA for 9f3b1d4
docker-compose.tst.yml
@@ -1,4 +1,3 @@
1
-version: "3.9"
2
services:
3
backend:
4
build:
@@ -53,6 +52,8 @@ services:
53
52
condition: service_healthy
54
test-dynamodb-e2e-testing:
55
+ test-redis-e2e-testing:
56
+ condition: service_healthy
57
command: ["/bin/sh", "-c", "yarn test $EXTRA_ARGS"]
58
develop:
59
watch:
@@ -161,6 +162,15 @@ services:
161
162
depends_on:
163
- backend
164
165
166
+ image: redis:7.0.11
167
+ command: ["redis-server", "--requirepass", "SuperSecretRedisPassword"]
168
+ healthcheck:
169
+ test: ["CMD", "redis-cli", "ping"]
170
+ interval: 30s
171
+ timeout: 10s
172
+ retries: 3
173
+
174
# rocketadmin-agent_oracle:
175
# build:
176
# context: .
0 commit comments