searxng/docker-compose.yml
Nathaniel Smith 0e6a8f619e
Some checks failed
Documentation / Release (push) Has been cancelled
Integration / Python 3.10 (push) Has been cancelled
Integration / Python 3.11 (push) Has been cancelled
Integration / Python 3.12 (push) Has been cancelled
Integration / Python 3.13 (push) Has been cancelled
Integration / Python 3.9 (push) Has been cancelled
Integration / Theme (push) Has been cancelled
Checker / Search (push) Has been cancelled
Translation / Update (push) Has been cancelled
Translation / Pull Request (push) Has been cancelled
Cleanup / Container cache (push) Has been cancelled
Update docker-compose.yml
2025-05-15 16:26:15 +00:00

20 lines
478 B
YAML

version: '3.8'
services:
searxng:
container_name: searxng
build: .
ports:
- "32768: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