Skip to content

Commit 8b3e7e1

Browse files
feat(posts): add "How to run SearXNG with Docker"
Post: 2026-05-10-how-to-run-searxng-with-docker.md
1 parent 2000a12 commit 8b3e7e1

1 file changed

Lines changed: 45 additions & 0 deletions

File tree

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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+
```

0 commit comments

Comments
 (0)