18 lines
328 B
YAML
18 lines
328 B
YAML
---
|
|
services:
|
|
valkey:
|
|
image: docker.io/valkey/valkey:latest
|
|
restart: unless-stopped
|
|
tmpfs:
|
|
- /data/
|
|
|
|
app:
|
|
image: "$IMAGEAPP"
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8080:8080"
|
|
environment:
|
|
- SEARXNG_SECRET=secret # $(openssl rand -hex 32)
|
|
volumes:
|
|
- ./config/:/etc/searxng/
|