-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
35 lines (31 loc) · 926 Bytes
/
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
# Docker-compose file for the EZ-Apps (ezlo-hub-kit example apps)
version: '3.5'
services:
ez-mqttrelay:
image: ghcr.io/bblacey/ez-mqttrelay
env_file:
- ./config.env
environment:
- NODE_ENV=production
network_mode: host
container_name: ez-mqttrelay
restart: unless-stopped
ez-housemode-synchronizer:
image: ghcr.io/bblacey/ez-housemode-synchronizer
network_mode: host
env_file:
- ./config.env
environment:
- NODE_ENV=production
container_name: ez-housemode-synchronizer
restart: unless-stopped
ez-housemode-scenerunner:
image: ghcr.io/bblacey/ez-housemode-scenerunner
network_mode: host
env_file:
- ./config.env
environment:
- SCENE_MAP="$$(<scene-map.json)"
- NODE_ENV=production
container_name: ez-housemode-scenerunner
restart: unless-stopped