暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

docker-compose.yml 428B

1234567891011121314151617
  1. version: '2.0'
  2. services:
  3. homeassistant:
  4. container_name: home-assistant
  5. image: homeassistant/raspberrypi3-homeassistant:stable
  6. restart: always
  7. devices:
  8. - /dev/video0:/dev/video0
  9. volumes:
  10. - ./config:/config
  11. - ./snapshots:/snapshots
  12. - ./keys:/root/.ssh/
  13. - /etc/localtime:/etc/localtime:ro
  14. - /dev/mem:/dev/mem
  15. restart: always
  16. privileged: true
  17. network_mode: host