This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
whoogle [2021/08/28 14:58] – alexk7110 | whoogle [2025/08/19 14:41] (current) – removed alexk7110 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Whoogle Search Troubleshooting ====== | ||
- | ==== docker-compose.yml ==== | ||
- | <code yaml docker-compose.yml> | ||
- | --- | ||
- | # You cant use mem_limit in a 3.x docker-compose file in non swarm mode | ||
- | # see https:// | ||
- | version: " | ||
- | |||
- | services: | ||
- | whoogle-search: | ||
- | image: benbusby/ | ||
- | container_name: | ||
- | restart: unless-stopped | ||
- | pids_limit: 50 | ||
- | # mem_limit: 256mb | ||
- | # memswap_limit: | ||
- | # user debian-tor from tor package | ||
- | user: ' | ||
- | security_opt: | ||
- | - no-new-privileges | ||
- | cap_drop: | ||
- | - ALL | ||
- | tmpfs: | ||
- | - / | ||
- | - / | ||
- | - / | ||
- | # | ||
- | # Basic auth configuration, | ||
- | #- WHOOGLE_USER=< | ||
- | #- WHOOGLE_PASS=< | ||
- | # Proxy configuration, | ||
- | #- WHOOGLE_PROXY_USER=< | ||
- | #- WHOOGLE_PROXY_PASS=< | ||
- | #- WHOOGLE_PROXY_TYPE=< | ||
- | #- WHOOGLE_PROXY_LOC=< | ||
- | # Site alternative configurations, | ||
- | # Note: If not set, the feature will still be available | ||
- | # with default values. | ||
- | #- WHOOGLE_ALT_TW=nitter.net | ||
- | #- WHOOGLE_ALT_YT=invidious.snopyta.org | ||
- | #- WHOOGLE_ALT_IG=bibliogram.art/ | ||
- | #- WHOOGLE_ALT_RD=libredd.it | ||
- | #- WHOOGLE_ALT_TL=lingva.ml | ||
- | #env_file: # Alternatively, | ||
- | #- whoogle.env | ||
- | ports: | ||
- | - 5000:5000 | ||
- | </ |