mirror of
https://github.com/bendtherules/ask262.git
synced 2026-08-18 13:21:55 +00:00
15 lines
453 B
YAML
15 lines
453 B
YAML
# coolify.yaml - Coolify deployment configuration
|
|
version: 1
|
|
|
|
services:
|
|
- name: ask262
|
|
|
|
cronjobs:
|
|
- name: "log-rotation"
|
|
schedule: "*/5 * * * *" # Every 5 minutes
|
|
command: "logrotate -f /app/logrotate.conf 2>/dev/null || true"
|
|
|
|
- name: "log-cleanup"
|
|
schedule: "0 0 * * *" # Daily at midnight
|
|
command: "find ${ASK262_LOG_DIR:-/app/logs} -name 'ask262.jsonl.*' -mtime +${ASK262_LOG_RETENTION_DAYS:-30} -delete 2>/dev/null || true"
|