agent-system/docker-compose.yml

42 lines
861 B
YAML
Raw Permalink Normal View History

2026-04-30 21:15:28 +02:00
services:
redis:
image: redis:7
ports:
- "6379:6379"
restart: unless-stopped
orchestrator:
build: ./orchestrator
depends_on:
- redis
environment:
REDIS_HOST: redis
HA_PROXY_URL: https://ha.okit.pl
volumes:
- /tmp/agent-events.log:/tmp/agent-events.log
2026-04-30 21:15:28 +02:00
stdin_open: true
tty: true
webui:
build: ./webui
container_name: agent-system-webui
environment:
REDIS_HOST: redis
ports:
- "8080:8080"
volumes:
- /tmp/agent-events.log:/tmp/agent-events.log
depends_on:
- orchestrator
- redis
monitor-agent:
build: ./monitor-agent
environment:
NODE_NAME: ubuntu-4gb-hel1-1
ORCHESTRATOR_URL: http://webui:8080/events
SERVICES_TO_CHECK: homeassistant,lms,forgejo
depends_on:
- webui
restart: unless-stopped