Init home assistant
All checks were successful
Deploy to Fighter / Deploy (push) Successful in 1m58s
Deploy to Fighter / Notify (push) Successful in 2s

This commit is contained in:
Joey Hafner 2024-02-26 10:51:50 -08:00
parent 7ec6f6cd33
commit 8ea71bd93e
3 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1 @@
DOCKER_DATA=/mnt/iscsi/home-assistant

View File

@ -0,0 +1,18 @@
version: '3.9'
services:
home-assistant:
image: lscr.io/linuxserver/homeassistant:latest
container_name: home-assistant_home-assistant
env_file:
- home-assistant.env
networks:
- web
volumes:
- $DOCKER_DATA:/config
labels:
- traefik.http.routers.home-assistant.rule=Host(`homeassistant.jafner.net`)
- traefik.http.routers.home-assistant.tls.certresolver=lets-encrypt
networks:
web:
external: true

View File

@ -0,0 +1,3 @@
TZ=America/Los_Angeles
PUID=1001
PGID=1001