Advertisement
JonasPed

Untitled

Sep 6th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.74 KB | None | 0 0
  1. version: '2.2'
  2. services:
  3.         hass:
  4.                 image: "homeassistant/home-assistant"
  5.                 command: [ "python", "-m", "homeassistant", "--config", "/config", "--log-rotate-days", '10' ]
  6.                 volumes:
  7.                        - "/srv/docker/hass:/config"
  8.                         - "/etc/localtime:/etc/localtime:ro"
  9.                 devices:
  10.                        - "/dev/ttyACM0"
  11.                 restart: unless-stopped
  12.                 network_mode: "host"
  13.  
  14.         appdaemon:
  15.                 image: "acockburn/appdaemon:latest"
  16.                 volumes:
  17.                        - "/srv/docker/appdaemon:/conf"
  18.                         - "/etc/localtime:/etc/localtime:ro"
  19.                 restart: unless-stopped
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement