|
|
|
|
@@ -52,8 +52,16 @@ services:
|
|
|
|
|
- ROCR_VISIBLE_DEVICES=0,1
|
|
|
|
|
- HSA_ENABLE_SDMA=0
|
|
|
|
|
- TZ=America/Montreal
|
|
|
|
|
# Hermes Workspace dashboard (port 9119) — enables multi-agent web UI
|
|
|
|
|
- HERMES_DASHBOARD=1
|
|
|
|
|
- HERMES_DASHBOARD_HOST=0.0.0.0
|
|
|
|
|
- HERMES_DASHBOARD_PORT=9119
|
|
|
|
|
volumes:
|
|
|
|
|
- /mnt/HoardingCow_docker_data/Hermes/data:/opt/data
|
|
|
|
|
# Syncthing-shared org files — read-only view of user's agenda
|
|
|
|
|
- /mnt/HoardingCow_docker_data/Syncthing/telos-ro:/opt/data/telos-ro:ro
|
|
|
|
|
# Syncthing-shared inbox — write tasks here, they sync to user's laptop
|
|
|
|
|
- /mnt/HoardingCow_docker_data/Syncthing/telos-rw:/opt/data/telos-rw:rw
|
|
|
|
|
devices:
|
|
|
|
|
- /dev/kfd:/dev/kfd
|
|
|
|
|
- /dev/dri:/dev/dri
|
|
|
|
|
@@ -62,6 +70,41 @@ services:
|
|
|
|
|
- "26"
|
|
|
|
|
networks:
|
|
|
|
|
- ai_backend
|
|
|
|
|
healthcheck:
|
|
|
|
|
test: ["CMD-SHELL", "curl -fsS http://localhost:8642/health && curl -fsS http://localhost:9119/api/status || exit 1"]
|
|
|
|
|
interval: 15s
|
|
|
|
|
timeout: 5s
|
|
|
|
|
retries: 5
|
|
|
|
|
start_period: 60s
|
|
|
|
|
|
|
|
|
|
syncthing:
|
|
|
|
|
image: syncthing/syncthing:latest
|
|
|
|
|
container_name: syncthing
|
|
|
|
|
hostname: syncthing
|
|
|
|
|
restart: always
|
|
|
|
|
ports:
|
|
|
|
|
- "8384:8384"
|
|
|
|
|
- "22000:22000"
|
|
|
|
|
- "21027:21027/udp"
|
|
|
|
|
environment:
|
|
|
|
|
- TZ=America/Montreal
|
|
|
|
|
volumes:
|
|
|
|
|
- /mnt/HoardingCow_docker_data/Syncthing/config:/var/syncthing/config
|
|
|
|
|
- /mnt/HoardingCow_docker_data/Syncthing/telos-ro:/telos-ro
|
|
|
|
|
- /mnt/HoardingCow_docker_data/Syncthing/telos-rw:/telos-rw
|
|
|
|
|
networks:
|
|
|
|
|
- ai_backend
|
|
|
|
|
- ai_net
|
|
|
|
|
labels:
|
|
|
|
|
- "traefik.enable=true"
|
|
|
|
|
- "traefik.http.routers.syncthing-http.rule=Host(`syncthing.lazyworkhorse.net`)"
|
|
|
|
|
- "traefik.http.routers.syncthing-http.entrypoints=web"
|
|
|
|
|
- "traefik.http.routers.syncthing-http.middlewares=redirect-to-https"
|
|
|
|
|
- "traefik.http.routers.syncthing-https.rule=Host(`syncthing.lazyworkhorse.net`)"
|
|
|
|
|
- "traefik.http.routers.syncthing-https.entrypoints=websecure"
|
|
|
|
|
- "traefik.http.routers.syncthing-https.tls=true"
|
|
|
|
|
- "traefik.http.routers.syncthing-https.tls.certresolver=njalla"
|
|
|
|
|
- "traefik.http.services.syncthing.loadbalancer.server.port=8384"
|
|
|
|
|
|
|
|
|
|
ollama:
|
|
|
|
|
build:
|
|
|
|
|
|