2024-05-01 08:36:34 +00:00
|
|
|
---
|
|
|
|
services:
|
2024-07-30 10:21:28 +00:00
|
|
|
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:
|
2024-12-23 03:06:06 +00:00
|
|
|
- ./config/:/etc/searxng/:ro
|