self-hosted/searxng/docker-compose.yml

34 lines
568 B
YAML
Raw Normal View History

2023-06-04 07:01:35 +02:00
version: "3.7"
services:
searxng:
2023-06-04 07:07:20 +02:00
image: searxng/searxng:latest
2023-06-04 07:01:35 +02:00
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