feat(project): init

This commit is contained in:
2026-03-10 17:06:22 +08:00
commit 1ae8509cce
70 changed files with 5141 additions and 0 deletions

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'