searxng/docker-compose.yml
Nathaniel Smith e9240335d9
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
Add docker-compose.yml
2025-05-15 16:20:07 +00:00

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