Files
searNGX/compose.yaml
T
Baerspektivo a2ff4a88b9
Build and Deploy SearXNG / deploy (push) Failing after 8s
New live system
2026-06-10 13:10:38 +02:00

34 lines
723 B
YAML

services:
valkey:
image: docker.io/valkey/valkey:8-alpine
container_name: searxng-valkey
command: valkey-server --save 30 1 --loglevel warning
restart: unless-stopped
volumes:
- valkey-data:/data
cap_drop:
- ALL
cap_add:
- SETGID
- SETUID
- DAC_OVERRIDE
searxng:
image: docker.io/searxng/searxng:latest
container_name: searxng-core
restart: unless-stopped
ports:
- "8888:8080"
environment:
- SEARXNG_SECRET=${SEARXNG_SECRET}
- SEARXNG_BASE_URL=${SEARXNG_BASE_URL}
volumes:
- ./config:/etc/searxng:rw
- searxng-data:/var/cache/searxng
depends_on:
- valkey
volumes:
valkey-data:
searxng-data: