Initial Commit

This commit is contained in:
2026-03-24 06:57:33 +01:00
commit d418c44437
8 changed files with 374 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
services:
redisinsight:
image: redis/redisinsight
ports:
- 5540:5540
redis:
image: redis:8.6.1
build: ./build
command: ["/conf/redis.conf"]
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 1m30s
timeout: 30s
retries: 5
start_period: 30s
volumes:
- ./conf:/conf:ro
- /data
expose:
- 6379
- 16379
deploy:
mode: replicated
endpoint_mode: dnsrr
replicas: 9
clustersetup:
image: redis:8.6.1
volumes:
- ./scripts/cluster-init.sh:/cluster-init.sh
entrypoint: /cluster-init.sh
depends_on:
redis:
condition: service_healthy
notebooks:
image: quay.io/jupyter/scipy-notebook:python-3.13
ports:
- 8888:8888
userns_mode: keep-id
volumes:
- ./notebooks:/home/jovyan