Files
Docker-02/searxng/docker-compose.yml
T
miker 3fd2b94cff
Deploy searxng / deploy (push) Successful in 13s
Update searxng/docker-compose.yml
2026-07-20 15:18:24 +00:00

21 lines
630 B
YAML

services:
searxng:
container_name: searxng
image: docker.io/searxng/searxng:latest
restart: unless-stopped
ports:
- "8080:8080"
volumes:
- /opt/Docker-Deployments/searxng:/etc/searxng:rw
- /opt/Docker-Deployments/searxng_cache:/var/cache/searxng:rw
environment:
- SEARXNG_BASE_URL=https://search.mikemcfetridge.com
- UWSGI_WORKERS=${SEARXNG_UWSGI_WORKERS:-4}
- UWSGI_THREADS=${SEARXNG_UWSGI_THREADS:-4}
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:8080" ]
interval: 10s
retries: 3
timeout: 10s
start_period: 30s
#