27 lines
1.1 KiB
YAML
27 lines
1.1 KiB
YAML
services:
|
|
home_assistant:
|
|
image: homeassistant/home-assistant
|
|
restart: unless-stopped
|
|
container_name: home_assistant
|
|
environment:
|
|
- TZ=Europe/Paris
|
|
volumes:
|
|
- {{ server.work_dir }}/home_assistant/base:/config
|
|
- /etc/localtime:/etc/localtime:ro
|
|
network_mode: host
|
|
expose:
|
|
- 8123
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.homeassistant-secure.entrypoints=https"
|
|
- "traefik.http.routers.homeassistant-secure.rule=Host(`domo.{{ server.domain }}`)"
|
|
- "traefik.http.routers.homeassistant-secure.tls=true"
|
|
- "traefik.http.routers.homeassistant-secure.tls.certresolver=sslResolver"
|
|
# - "traefik.http.routers.homeassistant-secure.service=homeassistant"
|
|
- "traefik.http.routers.homeassistant-secure.middlewares=private-network@file"
|
|
- "traefik.http.services.homeassistant.loadbalancer.server.port=8123"
|
|
logging:
|
|
driver: loki
|
|
options:
|
|
loki-url: "https://lokidoki:vEGH5Z5siWgcDkNknvCVzPCyqhHSBJCBjeBRZJvxUP8SdgfxJ6AqCGutCWugGsx5@loki.mrdev023.fr/loki/api/v1/push"
|
|
mode: non-blocking
|