Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions pmoves/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,11 @@ x-tier-agent-hardened: &tier-agent-hardened
- CHOWN
- SETGID
- SETUID
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
Comment on lines +400 to +404

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Apply log rotation to every tier anchor

On hosts retaining Docker's default unbounded json-file settings, this limit reaches only services that merge exactly tier-agent-hardened or tier-data-hardened; the independent Supabase, API, worker, media, LLM, UI, agent-ro, and agent-rw anchors do not inherit it. Consequently services such as transcribe-backend, ffmpeg-whisper, tensorzero-clickhouse, and all 18 read-only agent services remain unbounded even after force-recreation, so the disk-full root cause persists across most of the stack. Add the logging configuration to every tier variant or merge a shared logging anchor into every service.

Useful? React with 馃憤聽/ 馃憥.


x-tier-agent-hardened-ro: &tier-agent-hardened-ro
env_file:
Expand Down Expand Up @@ -472,6 +477,11 @@ x-tier-data-hardened: &tier-data-hardened
- FOWNER
- SETGID
- SETUID
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"

x-tier-media-hardened: &tier-media-hardened
env_file:
Expand Down
Loading