13 lines
289 B
YAML
13 lines
289 B
YAML
|
|
services:
|
||
|
|
whoogle:
|
||
|
|
image: benbusby/whoogle-search:latest
|
||
|
|
container_name: whoogle
|
||
|
|
restart: unless-stopped
|
||
|
|
ports:
|
||
|
|
- "${WHOOGLE_PORT:-5000}:5000"
|
||
|
|
environment:
|
||
|
|
TZ: ${TZ:-Europe/Brussels}
|
||
|
|
WHOOGLE_CONFIG_DIR: /config
|
||
|
|
volumes:
|
||
|
|
- ./config:/config
|