2023-12-24 18:54:49 +00:00
|
|
|
version: "3.8"
|
|
|
|
services:
|
|
|
|
whoogle:
|
2023-12-26 22:40:54 +00:00
|
|
|
image: benbusby/whoogle-search:latest
|
2023-12-24 18:54:49 +00:00
|
|
|
container_name: whoogle
|
|
|
|
restart: unless-stopped
|
|
|
|
|
|
|
|
networks:
|
2023-12-26 22:40:54 +00:00
|
|
|
- web
|
2023-12-24 18:54:49 +00:00
|
|
|
|
2024-01-04 21:42:14 +00:00
|
|
|
labels:
|
|
|
|
- "traefik.enable=true"
|
|
|
|
- "traefik.http.routers.whoogle.rule=Host(`whoogle.${DOMAIN_ROOT}`)"
|
|
|
|
- "traefik.http.services.whoogle.loadbalancer.server.port=5000"
|
|
|
|
- 'traefik.http.routers.whoogle.middlewares=authelia@docker'
|
|
|
|
|
2023-12-24 18:54:49 +00:00
|
|
|
networks:
|
2023-12-26 22:40:54 +00:00
|
|
|
web:
|
|
|
|
external: true
|