feat(project): init

This commit is contained in:
2026-02-03 18:05:47 +08:00
commit f37a119eff
188 changed files with 29246 additions and 0 deletions

2
redislocal/.env Normal file
View File

@@ -0,0 +1,2 @@
REDIS_PORT=9765
CONTAINER_NAME=redis_container

2
redislocal/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
logs
data

View File

@@ -0,0 +1,13 @@
services:
redis:
image: redis/redis-stack-server:latest
container_name: ${CONTAINER_NAME}
restart: always
ports:
- ${REDIS_PORT}:6379
volumes:
- ./data:/data
- ./logs:/logs
- ./redis.conf:/usr/local/etc/redis/redis.conf
entrypoint: /bin/sh
command: -c 'redis-server /usr/local/etc/redis/redis.conf'

1404
redislocal/redis.conf Normal file

File diff suppressed because it is too large Load Diff