searxng/compose.yaml
2024-05-01 12:19:54 +02:00

19 lines
391 B
YAML

---
services:
redis:
image: docker.io/redis:latest
restart: unless-stopped
tmpfs:
- /data/
app:
image: "$IMAGEAPP"
restart: unless-stopped
ports:
- "8080:8080"
environment:
- SEARXNG_SECRET=secret # $(openssl rand -hex 32)
volumes:
- ./limiter.toml:/etc/searxng/limiter.toml:ro
- ./settings.yml:/etc/searxng/settings.yml:ro