🔧 Copied self hosted docker apps

This commit is contained in:
tomit4 2025-08-29 03:38:56 -07:00
parent 36943e27da
commit abc55d8ed5
209 changed files with 58596 additions and 0 deletions

View file

@ -0,0 +1,23 @@
services:
searxng:
container_name: searxng
image: docker.io/searxng/searxng:latest
restart: unless-stopped
ports:
- "127.0.0.1:8080:8080"
volumes:
- ./searxng:/etc/searxng:rw
- searxng-data:/var/cache/searxng:rw
environment:
- SEARXNG_BASE_URL=https://${SEARXNG_HOSTNAME:-localhost}/
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
# dns:
# - 8.8.8.8
# - 8.8.4.4
volumes:
searxng-data: