This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
whoogle [2021/08/28 12:55] – created alexk7110 | whoogle [2021/08/28 14:58] (current) – alexk7110 | ||
---|---|---|---|
Line 3: | Line 3: | ||
<code yaml docker-compose.yml> | <code yaml docker-compose.yml> | ||
--- | --- | ||
- | git clone https:// | + | # You cant use mem_limit in a 3.x docker-compose file in non swarm mode |
- | cd whoogle-search | + | # see https:// |
- | docker-compose up | + | |
+ | version: " | ||
+ | |||
+ | services: | ||
+ | whoogle-search: | ||
+ | image: | ||
+ | | ||
+ | | ||
+ | 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 | ||
</ | </ |