diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 000000000..5d191dc2b --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,19 @@ +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