11 lines
275 B
YAML
11 lines
275 B
YAML
services:
|
|
searxng:
|
|
container_name: searxng
|
|
image: docker.io/searxng/searxng:latest
|
|
restart: unless-stopped
|
|
env_file: .env
|
|
ports:
|
|
- "8888:8080"
|
|
volumes:
|
|
- ${SEARXNG_CONFIG_DIR}:/etc/searxng/
|
|
- ${SEARXNG_DATA_DIR}:/var/cache/searxng/ |