Skip to content

Commit c18e598

Browse files
authored
Add redis to moose stack (#1745)
1 parent d72172f commit c18e598

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

apps/framework-cli/src/utilities/docker-compose.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,28 @@ volumes:
33
clickhouse-0-data: null
44
clickhouse-0-logs: null
55
clickhouse-0-users: null
6+
redis-data:
7+
redisinsight-data:
8+
69
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+
ports:
20+
- "8001:8001"
21+
volumes:
22+
- redisinsight-data:/data
23+
environment:
24+
- REDISINSIGHT_HOST=0.0.0.0
25+
- REDISINSIGHT_PORT=8001
26+
depends_on:
27+
- redis
728
redpanda:
829
image: docker.redpanda.com/redpandadata/redpanda:latest
930
ports:

0 commit comments

Comments
 (0)