From 2e576545552b8416860a5df048b635d3015a6769 Mon Sep 17 00:00:00 2001 From: Dave Dietrick Date: Tue, 7 Jan 2025 12:13:10 -0500 Subject: [PATCH] Added home stack --- home.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 home.yaml diff --git a/home.yaml b/home.yaml new file mode 100644 index 0000000..7c4a74d --- /dev/null +++ b/home.yaml @@ -0,0 +1,19 @@ +services: + homeassistant: + container_name: homeassistant + hostname: homeassistant + image: "ghcr.io/home-assistant/home-assistant:stable" + volumes: + - /portainer/homeassistant:/config + - /etc/localtime:/etc/localtime:ro + - /run/dbus:/run/dbus:ro + restart: unless-stopped + privileged: true + networks: + - nginx + ports: + - "8123:8123" + +networks: + nginx: + external: true