Files
fulloch/compose.yml
T
Liam PettigrewandClaude Opus 4.5 464d049433 init
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-23 17:06:44 +11:00

35 lines
588 B
YAML
Executable File

services:
# Fulloch AI
app:
build:
context: .
env_file:
- .env
container_name: fulloch-ai
devices:
- /dev/snd:/dev/snd
group_add:
- audio
volumes:
- ./data:/app/data:rw
# Web Search - Searxng
searxng:
image: searxng/searxng:latest
container_name: searxng
ports:
- "8080:8080"
volumes:
- ./searxng_data:/etc/searxng:rw
restart: unless-stopped
cap_drop:
- ALL
cap_add:
- CHOWN
- SETGID
- SETUID
- DAC_OVERRIDE
volumes:
searxng_data: {}
app_data: {}