forked from balena-io-experimental/balena-homeassistant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (40 loc) · 770 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (40 loc) · 770 Bytes
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
version: '2'
volumes:
config:
mosquitto:
mqttio:
services:
homeassistant:
build: homeassistant
ports:
- "1900:1900"
- "1901:1901"
- "80:8123"
- "51827:51827"
privileged: true
volumes:
- 'config:/config'
restart: always
mqtt:
build: mqtt
ports:
- "1883:1883"
restart: always
volumes:
- 'mosquitto:/mosquitto/data'
hass-configurator:
image: "causticlab/hass-configurator-docker:latest"
restart: always
ports:
- "3218:3218"
volumes:
- 'config:/hass-config'
- 'mqttio:/mqttio-config'
environment:
- HC_BASEPATH=/hass-config
mqttio:
build: mqtt_io
restart: always
privileged: true
volumes:
- 'mqttio:/config'