Some checks are pending
Documentation / Release (push) Waiting to run
Integration / Python 3.10 (push) Waiting to run
Integration / Python 3.11 (push) Waiting to run
Integration / Python 3.12 (push) Waiting to run
Integration / Python 3.13 (push) Waiting to run
Integration / Python 3.9 (push) Waiting to run
Integration / Theme (push) Waiting to run
20 lines
477 B
YAML
20 lines
477 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
searxng:
|
|
container_name: searxng
|
|
build: .
|
|
ports:
|
|
- "8180:8080" # Host:Container — change 8180 to whatever host port you want
|
|
restart: unless-stopped
|
|
environment:
|
|
- BASE_URL=https://search.bsllc.xyz # Optional if using a reverse proxy
|
|
volumes:
|
|
- ./searxng-settings:/etc/searxng # optional, only if you mount custom settings
|
|
networks:
|
|
- searxng_net
|
|
|
|
networks:
|
|
searxng_net:
|
|
driver: bridge
|