feat: add FalkorDB, LMDeploy, and Pogocache with configuration files and documentation

This commit is contained in:
Sun-ZhenXing
2026-01-20 14:18:28 +08:00
parent 1c528c0e64
commit 2a010843d1
14 changed files with 384 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
# Docker Compose for Pogocache
# Pogocache is fast caching software built from scratch with a focus on low latency and cpu efficiency.
# See: https://github.com/tidwall/pogocache
x-defaults: &defaults
restart: unless-stopped
logging:
driver: json-file
options:
max-size: 10m
max-file: "3"
services:
pogocache:
<<: *defaults
image: ${GLOBAL_REGISTRY:-}pogocache/pogocache:${POGOCACHE_VERSION:-1.3.1}
ports:
- "${POGOCACHE_PORT_OVERRIDE:-9401}:9401"
environment:
- TZ=${TZ:-UTC}
volumes:
- pogocache_data:/data
command: >
${POGOCACHE_EXTRA_ARGS:-}
--persist /data/pogocache.db
healthcheck:
test: ["CMD-SHELL", "nc -z localhost 9401 || exit 1"]
interval: 10s
timeout: 5s
retries: 5
start_period: 5s
deploy:
resources:
limits:
cpus: ${POGOCACHE_CPU_LIMIT:-0.50}
memory: ${POGOCACHE_MEMORY_LIMIT:-512M}
reservations:
cpus: ${POGOCACHE_CPU_RESERVATION:-0.10}
memory: ${POGOCACHE_MEMORY_RESERVATION:-128M}
volumes:
pogocache_data: