Created
September 19, 2024 00:22
-
-
Save loganlinn/e7a1a83a9d5ccf689546e24d7ca2c2f8 to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/sh | |
podman run \ | |
--name homeassistant \ | |
--hostname homeassistant \ | |
--replace \ | |
--detach \ | |
--restart=unless-stopped \ | |
--privileged \ | |
--network=host \ | |
--tz=local \ | |
--volume=/run/dbus:/run/dbus:ro \ | |
--volume=/etc/localtime:/etc/localtime:ro \ | |
--volume=$XDG_CONFIG_HOME/home-assistant:/config:z \ | |
ghcr.io/home-assistant/home-assistant:stable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment