26 lines
524 B
YAML
26 lines
524 B
YAML
|
version: "3.8"
|
||
|
services:
|
||
|
whoogle:
|
||
|
image: benbusby/whoogle-search
|
||
|
container_name: whoogle
|
||
|
restart: unless-stopped
|
||
|
|
||
|
labels:
|
||
|
- "traefik.http.services.whoogle.loadbalancer.server.port=5000"
|
||
|
- "traefik.enable=true"
|
||
|
- "traefik.http.routers.whoogle.rule=Host(`whoogle.${DOMAIN_ROOT}`)"
|
||
|
- 'traefik.http.routers.whoogle.middlewares=authelia@docker'
|
||
|
|
||
|
environment:
|
||
|
- DOMAIN_ROOT=${DOMAIN_ROOT}
|
||
|
|
||
|
networks:
|
||
|
- home-proxy
|
||
|
|
||
|
|
||
|
|
||
|
networks:
|
||
|
home-proxy:
|
||
|
external: true
|
||
|
|