searxng/docker-compose.yml
2022-04-17 17:08:11 +02:00

13 lines
280 B
YAML

version: '3'
services:
searxng:
container_name: searxng
image: searxng/searxng
restart: unless-stopped
environment:
- BASE_URL=http://localhost:8080
- INSTANCE_NAME=my-instance
volumes:
- ./searxng:/etc/searxng
ports:
- 8080:8080