big update new dashboard and import export

This commit is contained in:
2026-04-10 00:39:35 +05:00
parent 4013701441
commit e2fb4ddb2a
19 changed files with 1324 additions and 159 deletions

View File

@@ -3,13 +3,20 @@ services:
redis:
image: redis:alpine
container_name: redis
command:
- redis-server --appendonly yes
- redis-server --requirepass CNXpuhMdxXHo7ZK8bhtXDvgXVZcjRn
command: >
redis-server
--requirepass CNXpuhMdxXHo7ZK8bhtXDvgXVZcjRn
--appendonly yes
--appendfsync everysec
--maxmemory 256mb
--maxmemory-policy volatile-lru
--tcp-keepalive 60
--timeout 300
--loglevel notice
ports:
- 6379:6379
volumes:
- ./data:/redis
- ./data/redis:/data
restart: always
postgres: