mirror of
https://github.com/Nighthawk42/fulloch.git
synced 2026-08-30 08:52:26 +00:00
44 lines
802 B
YAML
Executable File
44 lines
802 B
YAML
Executable File
services:
|
|
# Fulloch AI - GPU
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile_gpu
|
|
env_file:
|
|
- .env
|
|
container_name: fulloch-ai
|
|
network_mode: host
|
|
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: {} |