Live safe state

This commit is contained in:
2026-06-10 12:12:15 +02:00
commit 5163a9f808
2 changed files with 2780 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
name: searxng
services:
core:
container_name: searxng-core
image: docker.io/searxng/searxng:${SEARXNG_VERSION:-latest}
restart: always
ports:
- "8888:8080"
env_file: ./.env
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/
volumes:
core-data:
valkey-data: