-
Notifications
You must be signed in to change notification settings - Fork 57
/
docker-compose.yml
47 lines (43 loc) · 1.05 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#
# Docker-compose file for MacOS.
#
# @see /docker
#
# @link https://www.home-assistant.io/docs/installation/docker/
#
version: '3'
services:
hass:
container_name: homeassistant
image: homeassistant/home-assistant:0.108.8
restart: unless-stopped
env_file:
- docker/env
ports:
- 8123:8123
volumes:
- .:/config
mqtt:
container_name: mosquitto
image: toke/mosquitto:latest
restart: unless-stopped
ports:
- 1883:1883
- 9001:9001
volumes:
- ./docker/mosquitto.conf:/mqtt/config/mosquitto.conf:ro
appdaemon:
container_name: appdaemon
image: acockburn/appdaemon:latest
restart: unless-stopped
env_file:
- docker/env
ports:
- 5050:5050
volumes:
- ./appdaemon/apps:/conf/apps:ro
- ./appdaemon/custom_css:/conf/custom_css:ro
- ./appdaemon/custom_widgets:/conf/custom_widgets:ro
- ./appdaemon/dashboards:/conf/dashboards:ro
- ./appdaemon/appdaemon.yaml:/conf/appdaemon.yaml:ro
- ./appdaemon/secrets.yaml:/conf/secrets.yaml:ro