17 lines
346 B
YAML
17 lines
346 B
YAML
services:
|
|
searxng:
|
|
container_name: searxng
|
|
image: searxng/searxng:latest
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- ./searxng:/etc/searxng:rw
|
|
environment:
|
|
- SEARXNG_HOSTNAME=localhost:8080/
|
|
restart: unless-stopped
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "1m"
|
|
max-file: "1"
|