devmel / hass_airsend

Home Assistant Component permettant d'envoyer des commandes radio via AirSend (RF433) ou AirSend duo (RF433 & RF868).
GNU General Public License v3.0
11 stars 3 forks source link

Airsend & HA Container #12

Open alexicna92 opened 7 months ago

alexicna92 commented 7 months ago

Hello , how can I install in HA Container (docker) ? I have no supervisor for add-ons. Do you have docker image with config info ? It would really help me

nicotontige commented 6 days ago

If you still have the issue, you just have to put home assistant configuration file in a volume. Here an example with docker-compose:

version: '3' services: homeassistant: container_name: homeassistant image: homeassistant/home-assistant:latest volumes:

  • /docker/homeassistant:/config
  • /etc/localtime:/etc/localtime:ro restart: unless-stopped ports:
  • 8123:8123

The volume /config will have all the configuration files of home assistant, and addons too