19 lines
365 B
YAML
19 lines
365 B
YAML
---
|
|
services:
|
|
redis:
|
|
image: docker.io/redis:latest
|
|
restart: unless-stopped
|
|
tmpfs:
|
|
- /data/
|
|
|
|
app:
|
|
image: "$IMAGEAPP"
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8080:8080"
|
|
environment:
|
|
- SEARXNG_SECRET=secret
|
|
volumes:
|
|
- ./limiter.toml:/etc/searxng/limiter.toml:ro
|
|
- ./settings.yml:/etc/searxng/settings.yml:ro
|