searxng/compose.yaml

18 lines
331 B
YAML
Raw Normal View History

2024-05-01 08:36:34 +00:00
---
services:
valkey:
image: docker.io/valkey/valkey:latest
2024-05-01 08:36:34 +00:00
restart: unless-stopped
tmpfs:
- /data/
app:
image: "$IMAGEAPP"
restart: unless-stopped
ports:
- "8080:8080"
environment:
2024-05-01 10:19:54 +00:00
- SEARXNG_SECRET=secret # $(openssl rand -hex 32)
2024-05-01 08:36:34 +00:00
volumes:
- ./config/:/etc/searxng/:ro