17 lines
488 B
YAML
17 lines
488 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
whoogle:
|
|
image: benbusby/whoogle-search:latest
|
|
container_name: whoogle
|
|
restart: unless-stopped
|
|
ports:
|
|
- "5000:5000" # change if 5000 is taken
|
|
environment:
|
|
- WHOOGLE_CONFIG_DISABLE=0 # optional: keep config page enabled for tweaks
|
|
# Optional extras you can add later:
|
|
# - WHOOGLE_PROXY=1
|
|
# - WHOOGLE_TOR=0
|
|
# No cap_drop/cap_add needed — it runs clean
|
|
|
|
volumes: {} # no volumes required for basic use |