Files
nazarick-private/deploy/pi/docker-compose.yml
T
Sithies 72affaa0d8
CI / check (push) Successful in 13m8s
CI / test (push) Successful in 13m23s
CI / clippy (push) Successful in 12m46s
CI / deploy-infra (push) Has been skipped
CI / deploy (push) Has been skipped
feat: add Dockerfile, deploy pipeline, Ollama infra job, weekly cron
2026-04-25 19:22:51 +02:00

24 lines
592 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
services:
ollama:
image: ollama/ollama:latest
container_name: ollama
restart: unless-stopped
network_mode: host
volumes:
- /opt/nazarick/ollama:/root/.ollama
nazarick:
image: nazarick:latest
container_name: nazarick
restart: unless-stopped
network_mode: host
depends_on:
- ollama
volumes:
# Binary-Pfad: /app/target/release/nazarick
# 3× parent() → workspace_root = /app ✓
- /opt/nazarick/target:/app/target
- /opt/nazarick/config:/app/config
- /opt/nazarick/data:/app/data
working_dir: /app