mirror of
https://github.com/searxng/searxng.git
synced 2026-04-14 21:21:55 -04:00
* [mod] container: rework compose See https://docs.searxng.org/admin/installation-docker.html#migrate-from-searxng-docker * [mod] container: apply suggestions https://github.com/searxng/searxng/pull/5906#discussion_r3004917087 https://github.com/searxng/searxng/pull/5906#discussion_r3004917090 https://github.com/searxng/searxng/pull/5906#discussion_r3004917084
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:
|