Skip to content

whooglewhoogle

Containers

whoogle

whoogle.yml

Primary docker compose file for whoogle

version: "3.9"

networks:
  t2_proxy:
    name: t2_proxy
    external: true
  socket_proxy:
    name: socket_proxy
    external: true

services:
  # https://github.com/benbusby/whoogle-search
  whoogle:
    extends:
      file: ../../common-services.yml
      service: init_with_networks
    image: benbusby/whoogle-search:latest
    container_name: whoogle
    hostname: whoogle
    ports:
      - ${WHOOGLE_HTTP_PORT}:5000
    labels:
      - homepage.group=Other
      - homepage.name=Whoogle
      - homepage.icon=whooglesearch.png
      - homepage.href=$WHOOGLE_HOMEPAGE_URL
      - homepage.ping=$WHOOGLE_HOMEPAGE_PING
      - homepage.description=$WHOOGLE_HOMEPAGE_DESCRIPTION
      - homepage.hideErrors=true
      - homepage.showStats=true      
View Source: /environments/demo/other/whoogle.yml

whoogle.env

Primary environment file for whoogle

WHOOGLE_HOMEPAGE_DESCRIPTION=A self-hosted, ad-free, privacy-respecting metasearch engine
WHOOGLE_HOMEPAGE_URL=http://${NETWORK_HOST}:${WHOOGLE_HTTP_PORT}
WHOOGLE_HOMEPAGE_PING=http://${NETWORK_HOST}:${WHOOGLE_HTTP_PORT}
View Source: /environments/demo/other/whoogle.env