Files
fulloch/compose_gpu.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

42 lines
747 B
YAML
Executable File

services:
# Fulloch AI - GPU
app:
build:
context: .
env_file:
- .env
container_name: fulloch-ai
devices:
- /dev/snd:/dev/snd
group_add:
- audio
volumes:
- ./data:/app/data:rw
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
# 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: {}