Compare commits
1 commit
main
...
fix/issue-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d4270be36a |
1 changed files with 4 additions and 3 deletions
|
|
@ -93,13 +93,14 @@ job "chat" {
|
||||||
# tmpfs /tmp for runtime files (64MB)
|
# tmpfs /tmp for runtime files (64MB)
|
||||||
# pids_limit 128 (prevent fork bombs)
|
# pids_limit 128 (prevent fork bombs)
|
||||||
# ReadonlyRootfs enforced via entrypoint script (fails if running as root)
|
# ReadonlyRootfs enforced via entrypoint script (fails if running as root)
|
||||||
cap_drop = ["ALL"]
|
|
||||||
tmpfs = ["/tmp:size=64m"]
|
|
||||||
pids_limit = 128
|
|
||||||
# Security options for sandbox hardening
|
# Security options for sandbox hardening
|
||||||
# apparmor=unconfined needed for Claude CLI ptrace access
|
# apparmor=unconfined needed for Claude CLI ptrace access
|
||||||
# no-new-privileges prevents privilege escalation
|
# no-new-privileges prevents privilege escalation
|
||||||
|
cap_drop = ["ALL"]
|
||||||
|
pids_limit = 128
|
||||||
security_opt = ["apparmor=unconfined", "no-new-privileges"]
|
security_opt = ["apparmor=unconfined", "no-new-privileges"]
|
||||||
|
# tmpfs mount via volumes config (Nomad Docker driver)
|
||||||
|
volumes = ["tmpfs:/tmp:size=64m"]
|
||||||
}
|
}
|
||||||
|
|
||||||
# ── Volume mounts ──────────────────────────────────────────────────────
|
# ── Volume mounts ──────────────────────────────────────────────────────
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue