SearXNG

H
haraldv
21.03.2026
Tools

Searches Google & Co. without tracking you.

1
YAML
apiVersion: v1
kind: Pod
metadata:
  name: searxng
  labels:
    app: searxng
spec:
  restartPolicy: Always
  containers:
  - name: searxng
    image: docker.io/searxng/searxng:latest
    ports:
    - hostPort: 8080
      containerPort: 8080
    env:
    - name: SEARXNG_BASE_URL
      value: https://search.example.com
    - name: SEARXNG_SECRET_KEY
      value: changeme_random_secret
    volumeMounts:
    - name: vol-0
      mountPath: /etc/searxng
    securityContext:
      runAsUser: ''
      runAsGroup: ''
  volumes:
  - name: vol-0
    hostPath:
      path: ~/searxng/settings
      type: Directory

Comments 0

No comments yet. Be the first!

Log in to leave a comment.

Login