34 lines
1.0 KiB
YAML
34 lines
1.0 KiB
YAML
# Read the documentation before using the `docker-compose.yml` file:
|
|
# https://docs.searxng.org/admin/installation-docker.html
|
|
|
|
services:
|
|
searxng-core:
|
|
container_name: searxng-core
|
|
image: docker.io/searxng/searxng:latest
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8087:8080
|
|
volumes:
|
|
- /srv/docker/utilities/searxng/config/:/etc/searxng/:Z
|
|
- /srv/docker/utilities/searxng/data:/var/cache/searxng/
|
|
labels:
|
|
- homepage.group=Apps
|
|
- homepage.name=SearXNG
|
|
- homepage.icon=searxng.png
|
|
- homepage.href=${SEARXNG_URL}
|
|
- homepage.description=Browser
|
|
- dockhand.url=${SEARXNG_URL}
|
|
- rackpeek.tags=utilities
|
|
networks:
|
|
- proxy-net
|
|
|
|
searxng-valkey:
|
|
container_name: searxng-valkey
|
|
image: docker.io/valkey/valkey:9-alpine
|
|
command: valkey-server --save 30 1 --loglevel warning
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /srv/docker/utilities/searxng/valkey-data:/data/
|
|
labels:
|
|
- rackpeek.name=searxng-valkey
|
|
- rackpeek.tags=services |