mirror of
https://github.com/benbusby/whoogle-search.git
synced 2026-03-11 08:54:34 +00:00
Adds documentation for all available envirnrment variables to the README Co-authored-by: Ben Busby <benbusby@protonmail.com>
18 lines
480 B
YAML
18 lines
480 B
YAML
version: "3"
|
|
|
|
services:
|
|
whoogle-search:
|
|
image: benbusby/whoogle-search
|
|
container_name: whoogle-search
|
|
environment:
|
|
# Basic auth configuration, remove to disable
|
|
- WHOOGLE_USER=username
|
|
- WHOOGLE_PASS=password
|
|
# Proxy configuration, remove to disable
|
|
- WHOOGLE_PROXY_USER=username
|
|
- WHOOGLE_PROXY_PASS=password
|
|
- WHOOGLE_PROXY_TYPE=socks5
|
|
- WHOOGLE_PROXY_LOC=ip
|
|
ports:
|
|
- 5000:5000
|
|
restart: unless-stopped
|