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 d72172f commit c18e598Copy full SHA for c18e598
apps/framework-cli/src/utilities/docker-compose.yml
@@ -3,7 +3,28 @@ volumes:
3
clickhouse-0-data: null
4
clickhouse-0-logs: null
5
clickhouse-0-users: null
6
+ redis-data:
7
+ redisinsight-data:
8
+
9
services:
10
+ redis:
11
+ image: redis:7-alpine
12
+ ports:
13
+ - "6379:6379"
14
+ command: ["redis-server", "--appendonly", "yes"]
15
+ volumes:
16
+ - redis-data:/data
17
+ redisinsight:
18
+ image: redislabs/redisinsight:1.14.0
19
20
+ - "8001:8001"
21
22
+ - redisinsight-data:/data
23
+ environment:
24
+ - REDISINSIGHT_HOST=0.0.0.0
25
+ - REDISINSIGHT_PORT=8001
26
+ depends_on:
27
+ - redis
28
redpanda:
29
image: docker.redpanda.com/redpandadata/redpanda:latest
30
ports:
0 commit comments