29 lines
731 B
YAML
29 lines
731 B
YAML
|
|
# Read the documentation before using the `docker-compose.yml` file:
|
||
|
|
# https://docs.searxng.org/admin/installation-docker.html
|
||
|
|
|
||
|
|
name: searxng
|
||
|
|
|
||
|
|
services:
|
||
|
|
core:
|
||
|
|
container_name: searxng-core
|
||
|
|
image: docker.io/searxng/searxng:${SEARXNG_VERSION:-latest}
|
||
|
|
restart: always
|
||
|
|
ports:
|
||
|
|
- ${SEARXNG_HOST:+${SEARXNG_HOST}:}${SEARXNG_PORT:-8080}:${SEARXNG_PORT:-8080}
|
||
|
|
env_file: ./.env
|
||
|
|
volumes:
|
||
|
|
- ./core-config/:/etc/searxng/:Z
|
||
|
|
- core-data:/var/cache/searxng/
|
||
|
|
|
||
|
|
valkey:
|
||
|
|
container_name: searxng-valkey
|
||
|
|
image: docker.io/valkey/valkey:9-alpine
|
||
|
|
command: valkey-server --save 30 1 --loglevel warning
|
||
|
|
restart: always
|
||
|
|
volumes:
|
||
|
|
- valkey-data:/data/
|
||
|
|
|
||
|
|
volumes:
|
||
|
|
core-data:
|
||
|
|
valkey-data:
|