15 lines
363 B
YAML
15 lines
363 B
YAML
|
services:
|
||
|
searxng:
|
||
|
image: docker.io/searxng/searxng:latest
|
||
|
container_name: searxng
|
||
|
ports:
|
||
|
- "127.0.0.1:10406:8080"
|
||
|
restart: always
|
||
|
volumes:
|
||
|
- type: bind
|
||
|
source: /home/jas/podman/searxng/config
|
||
|
target: /etc/searxng
|
||
|
environment:
|
||
|
BASE_URL: "https://searxng.hyperreal.coffee"
|
||
|
INSTANCE_NAME: "searxng"
|