Skip to content

Commit

Permalink
Adding hassio files
Browse files Browse the repository at this point in the history
  • Loading branch information
bernardolm committed Sep 18, 2023
1 parent 918af87 commit c4a9248
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions home-assistant/install
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#!/usr/bin/env zsh
Empty file added home-assistant/install.ps1
Empty file.
24 changes: 24 additions & 0 deletions home-assistant/start
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/usr/bin/env zsh

# running on Debian 12 on WSL

container_name=hassio_supervisor

docker stop $container_name

docker rm $container_name

docker run \
--name=$container_name \
--privileged \
--restart always \
--security-opt seccomp=unconfined \
-d \
-e HOMEASSISTANT_REPOSITORY=homeassistant/qemux86-64-homeassistant \
-e SUPERVISOR_NAME=$container_name \
-e SUPERVISOR_SHARE=/volume1/docker/homeassistant \
-p 8123:8123 \
-v "/var/run/dbus:/var/run/dbus" \
-v "/var/run/docker.sock:/var/run/docker.sock" \
-v "/volume1/docker/homeassistant:/data" \
ghcr.io/home-assistant/amd64-hassio-supervisor:2023.09.2

0 comments on commit c4a9248

Please sign in to comment.