12 lines
256 B
YAML
12 lines
256 B
YAML
|
|
services:
|
||
|
|
searxng:
|
||
|
|
image: searxng/searxng:latest
|
||
|
|
ports:
|
||
|
|
- '8888:8080'
|
||
|
|
volumes:
|
||
|
|
- ./searxng:/etc/searxng
|
||
|
|
environment:
|
||
|
|
- BASE_URL=http://localhost:8888/
|
||
|
|
- INSTANCE_NAME=kochwas-search-dev
|
||
|
|
restart: unless-stopped
|