self-hosted/searxng/docker-compose.yml
Lorenzo Carbonell e240322f6e fix
2023-06-04 07:07:20 +02:00

34 lines
568 B
YAML

version: "3.7"
services:
searxng:
image: searxng/searxng:latest
container_name: searxng
init: true
environment:
- SEARXNG_BASE_URL=https://${FQDN:-localhost}/
restart: unless-stopped
networks:
- proxy
- internal
volumes:
- data:/etc/searxng:rw
redis:
image: redis:alpine
container_name: redis
init: true
command: redis-server --save "" --appendonly "no"
networks:
- internal
tmpfs:
- /var/lib/redis
volumes:
data: {}
networks:
internal: {}
proxy:
external: true