2026-05-27 13:34:23 +02:00
|
|
|
services:
|
|
|
|
|
node-agent:
|
2026-07-29 19:20:08 +02:00
|
|
|
# Docker GID on SOLARIA is 996 (not the Debian default 999 the base compose
|
|
|
|
|
# assumes). Without this the agent starts with "Docker unavailable:
|
|
|
|
|
# Permission denied" on /var/run/docker.sock and reports no containers
|
|
|
|
|
# (recon RECON-multiagent-2026-07-27.md, A2/E19). Compose concatenates
|
|
|
|
|
# group_add lists, so the base 999 stays alongside; 996 is what grants
|
|
|
|
|
# socket access here. Same per-host pattern as piha (123) and lustro (991).
|
|
|
|
|
group_add:
|
2026-07-30 15:44:17 +02:00
|
|
|
- "996" # host docker gid, verified 2026-07-30 (getent group docker → 996)
|
2026-05-27 13:34:23 +02:00
|
|
|
environment:
|
|
|
|
|
- NODE_NAME=solaria
|
|
|
|
|
- NODE_TYPE=ai_node
|
2026-05-27 14:07:27 +02:00
|
|
|
- VPS_EVENTS_HOST=100.95.58.48
|
2026-05-27 13:34:23 +02:00
|
|
|
- VPS_EVENTS_USER=oskar
|
|
|
|
|
- VPS_EVENTS_PATH=/opt/homelab/events
|
|
|
|
|
- CHECK_INTERVAL=60
|
2026-05-27 13:59:28 +02:00
|
|
|
volumes:
|
2026-06-12 14:32:12 +02:00
|
|
|
- /home/oskar/.ssh:/home/homelab/.ssh:ro
|