File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ---
2+ layout : post
3+ title : How to run SearXNG with Docker
4+ date : 2026-05-10 14:46:44
5+ excerpt : How to install and run SearXNG with Docker.
6+ categories : searxng docker
7+ ---
8+
9+ This post goes over how to install and run [ SearXNG] ( https://github.com/searxng/searxng ) with [ Docker] ( https://www.docker.com/ ) .
10+
11+ ## Install
12+
13+ [ Install Docker] ( https://docs.docker.com/engine/install/ ) :
14+
15+ ``` sh
16+ brew install --cask docker
17+ ```
18+
19+ Download the [ image] ( https://hub.docker.com/r/searxng/searxng ) :
20+
21+ ``` sh
22+ docker pull searxng/searxng
23+ ```
24+
25+ ## Run
26+
27+ Start a new container:
28+
29+ ``` sh
30+ docker run -d --name searxng -p 8080:8080 searxng/searxng
31+ ```
32+
33+ Then open in your browser:
34+
35+ ``` sh
36+ open http://localhost:8080
37+ ```
38+
39+ ## Stop
40+
41+ To stop and remove the container:
42+
43+ ``` sh
44+ docker rm -f searxng
45+ ```
You can’t perform that action at this time.
0 commit comments