Nodes ship events to VPS via rsync+SSH. The container runs as root and uses the default SSH identity, which must be at /root/.ssh/. Mount /home/oskar/.ssh from the host read-only so the existing authorized key is available inside the container. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
283 B
YAML
12 lines
283 B
YAML
services:
|
|
node-agent:
|
|
environment:
|
|
- NODE_NAME=solaria
|
|
- NODE_TYPE=ai_node
|
|
- VPS_EVENTS_HOST=100.108.208.3
|
|
- VPS_EVENTS_USER=oskar
|
|
- VPS_EVENTS_PATH=/opt/homelab/events
|
|
- CHECK_INTERVAL=60
|
|
volumes:
|
|
- /home/oskar/.ssh:/root/.ssh:ro
|