fix: update

This commit is contained in:
2026-06-09 12:31:45 +03:00
parent 41ef2e8e4e
commit 4ccbe2aa2c
57 changed files with 12 additions and 3165 deletions

View File

@@ -14,44 +14,4 @@ services:
APP_WORKERS: "2"
env_file:
- .env
depends_on:
b2b_keydb:
condition: service_healthy
restart: no
b2b_keydb:
image: eqalpha/keydb
container_name: b2b_keydb
restart: no
expose:
- "6379"
volumes:
- b2b_keydb_data:/data
command:
- keydb-server
- --requirepass
- ${REDIS_PASSWORD}
- --dir
- /data
- --appendonly
- "yes"
- --appendfsync
- everysec
- --save
- "900"
- "1"
- --save
- "300"
- "10"
- --save
- "60"
- "10000"
healthcheck:
test: ["CMD", "redis-cli", "-a", "${REDIS_PASSWORD}", "ping"]
interval: 5s
timeout: 2s
retries: 20
volumes:
b2b_keydb_data: