24 lines
430 B
YAML
24 lines
430 B
YAML
services:
|
|
searxng:
|
|
image: searxng/searxng:latest
|
|
container_name: searxng
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8888:8080"
|
|
volumes:
|
|
- /mnt/tank/docker/appdata/searxng:/etc/searxng
|
|
environment:
|
|
- SEARXNG_BASE_URL=http://localhost:8888/
|
|
cap_drop:
|
|
- ALL
|
|
cap_add:
|
|
- CHOWN
|
|
- SETGID
|
|
- SETUID
|
|
networks:
|
|
- pangolin
|
|
|
|
networks:
|
|
pangolin:
|
|
external: true
|