File size: 451 Bytes
755dd12 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
version: "3.7"
services:
search:
build: ./
container_name: search
volumes:
- ./.env.docker:/app/.env
ports:
- "3000:3000"
restart: always
searxng:
container_name: searxng
image: docker.io/searxng/searxng:latest
restart: always
# ports:
# - "127.0.0.1:8080:8080"
volumes:
- ./searxng:/etc/searxng:rw
environment:
- SEARXNG_BASE_URL=https://${SEARXNG_HOSTNAME:-localhost}/
|