mirror of
https://github.com/davestephens/ansible-nas
synced 2024-12-26 19:43:11 +00:00
27 lines
1 KiB
YAML
27 lines
1 KiB
YAML
---
|
|
- name: Create Home Assistant Directories
|
|
file:
|
|
path: "{{ item }}"
|
|
state: directory
|
|
with_items:
|
|
- "{{ homeassistant_data_directory }}/config"
|
|
|
|
- name: Home Assistant Docker Container
|
|
docker_container:
|
|
name: homeassistant
|
|
image: homeassistant/home-assistant
|
|
pull: true
|
|
volumes:
|
|
- "{{ homeassistant_data_directory }}/config:/config:rw"
|
|
network_mode: host
|
|
restart_policy: unless-stopped
|
|
env:
|
|
TZ: "{{ ansible_nas_timezone }}"
|
|
labels:
|
|
traefik.enable: "{{ homeassistant_available_externally }}"
|
|
traefik.http.routers.homeassistant.rule: "Host(`{{ homeassistant_hostname }}.{{ ansible_nas_domain }}`)"
|
|
traefik.http.routers.homeassistant.tls.certresolver: "letsencrypt"
|
|
traefik.http.routers.homeassistant.tls.domains[0].main: "{{ ansible_nas_domain }}"
|
|
traefik.http.routers.homeassistant.tls.domains[0].sans: "*.{{ ansible_nas_domain }}"
|
|
traefik.http.services.homeassistant.loadbalancer.server.port: "8123"
|
|
memory: "{{ homeassistant_memory }}"
|