New live system
Build and Deploy SearXNG / deploy (push) Failing after 8s

This commit is contained in:
2026-06-10 13:10:38 +02:00
parent 5163a9f808
commit a2ff4a88b9
4 changed files with 83 additions and 17 deletions
+25 -17
View File
@@ -1,25 +1,33 @@
name: searxng
services:
core:
valkey:
image: docker.io/valkey/valkey:8-alpine
container_name: searxng-valkey
command: valkey-server --save 30 1 --loglevel warning
restart: unless-stopped
volumes:
- valkey-data:/data
cap_drop:
- ALL
cap_add:
- SETGID
- SETUID
- DAC_OVERRIDE
searxng:
image: docker.io/searxng/searxng:latest
container_name: searxng-core
image: docker.io/searxng/searxng:${SEARXNG_VERSION:-latest}
restart: always
restart: unless-stopped
ports:
- "8888:8080"
env_file: ./.env
environment:
- SEARXNG_SECRET=${SEARXNG_SECRET}
- SEARXNG_BASE_URL=${SEARXNG_BASE_URL}
volumes:
- ./core-config/:/etc/searxng/:Z
- core-data:/var/cache/searxng/
valkey:
container_name: searxng-valkey
image: docker.io/valkey/valkey:9-alpine
command: valkey-server --save 30 1 --loglevel warning
restart: always
volumes:
- valkey-data:/data/
- ./config:/etc/searxng:rw
- searxng-data:/var/cache/searxng
depends_on:
- valkey
volumes:
core-data:
valkey-data:
searxng-data: