Last active
October 4, 2024 05:45
-
-
Save morshedx/71488f3ee91771befb233255985b771d to your computer and use it in GitHub Desktop.
homeassistant docker compose for mac
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
homeassistant: | |
container_name: homeassistant | |
image: ghcr.io/home-assistant/home-assistant:stable | |
volumes: | |
- '/Users/morshed/homeassistant:/config' | |
environment: | |
- TZ=Asia/Dhaka # get your Time Zone from - https://en.wikipedia.org/wiki/List_of_tz_database_time_zones | |
# network_mode: host | |
ports: | |
- '8123:8123' | |
restart: always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment