13 lines
288 B
YAML
13 lines
288 B
YAML
|
services:
|
||
|
searxng:
|
||
|
container_name: searxng
|
||
|
image: searxng/searxng:latest
|
||
|
ports:
|
||
|
- "8080:8080"
|
||
|
volumes:
|
||
|
- /data/searxng/etc:/etc/searxng:rw
|
||
|
environment:
|
||
|
- BASE_URL=https://searxng.plobos.xyz/
|
||
|
INSTANCE_NAME=plobos
|
||
|
restart: unless-stopped
|