24 lines
484 B
YAML
24 lines
484 B
YAML
|
|
version: '3.7'
|
||
|
|
|
||
|
|
services:
|
||
|
|
redis:
|
||
|
|
image: redis:alpine
|
||
|
|
container_name: searxng-redis
|
||
|
|
restart: always
|
||
|
|
command: redis-server --save "" --appendonly no
|
||
|
|
tmpfs:
|
||
|
|
- /data
|
||
|
|
|
||
|
|
searxng:
|
||
|
|
image: searxng/searxng:latest
|
||
|
|
container_name: searxng
|
||
|
|
restart: always
|
||
|
|
ports:
|
||
|
|
- "8027:8080"
|
||
|
|
volumes:
|
||
|
|
- ./settings.yml:/etc/searxng/settings.yml:ro
|
||
|
|
environment:
|
||
|
|
- SEARXNG_BASE_URL=https://searxng.idea-quadrat.de
|
||
|
|
depends_on:
|
||
|
|
- redis
|