How to install whoogle in Docker on Synology NAS

Whoogle is a free open-source self-hosted metasearch engine that allows you to search and get your Google results. However the Google search results are without any ads, JavaScript, AMP links, cookies, or IP address tracking. Easily deployable in one click as a Docker app, and customizable.

Features of Whoogle:

  1. No ads or sponsored content.
  2. No JavaScript.
  3. No cookies.
  4. No tracking/linking of your personal IP address.
  5. No AMP links.
  6. No URL tracking tags (i.e. utm=%s).
  7. No referrer header.
  8. POST request search queries (when possible).
  9. View images at full res without site redirect (currently mobile only).
  10. Dark mode option.
  11. Randomly generated User Agent.
  12. Easy to install/deploy.
  13. Optional location-based searching (i.e. results near <city>).
  14. Optional NoJS mode to disable all JavaScript in results.

Steps to deploy this in Docker on your Synology NAS are really simple:

  • No need to create any folder
  • Open Control Panel -> Task Scheduler -> click on Create
  • Click on Scheduled task -> User-defined script
  • General Tab – select user as a root, name it whoogle and uncheck the box
  • Skip Schedule tab
  • Task Settings -> enter email if you want received alerts (need to be configured on NAS)
  • Copy and paste the code

1
2
3
4
5
6
7
docker run -d --name=whoogle \
-p 5105:5000 \
-e WHOOGLE_USER=John \
-e WHOOGLE_PASS=12345 \
--security-opt=no-new-privileges \
--restart always \
benbusby/whoogle-search

Please make sure you use your own USER NAME and PASSWORD in the Docker file – you will need it once the Docker is up and running.

Once you deploy it, wait for a few seconds before you go to your http://[YOUR-NAS-IP]:5105

Enter the credentials you have used in Docker file and you are set.

Happy Whoogling !