2024-05-01 08:36:34 +00:00
|
|
|
---
|
|
|
|
services:
|
|
|
|
redis:
|
|
|
|
image: docker.io/redis:latest
|
|
|
|
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-05-15 23:33:29 +00:00
|
|
|
- ./config/:/etc/searxng/
|