34 lines
811 B
Markdown
34 lines
811 B
Markdown
# searXNG
|
|
|
|
|
|
|
|
|
|
|
|
| Création | dockge |
|
|
| ----------- | ------------------------------------------------------------ |
|
|
| Mise-à-jour | Watchtower |
|
|
| Port | 5147 |
|
|
| Liens | [Docs](https://docs.searxng.org)<br />[Github](https://github.com/searxng/searxng) |
|
|
|
|
|
|
|
|
```yaml
|
|
version: '3.9'
|
|
services:
|
|
searxng:
|
|
image: searxng/searxng
|
|
container_name: SearXNG
|
|
mem_limit: 8g
|
|
cpu_shares: 2048
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
labels:
|
|
- "com.centurylinklabs.watchtower.enable=true"
|
|
volumes:
|
|
- /volume1/docker/searxng:/etc/searxng:rw
|
|
restart: on-failure:5
|
|
ports:
|
|
- 5147:8080
|
|
```
|
|
|