Skip to content

Commit 249bc76

Browse files
committed
Merge branch 'stfnhmplr-master'
2 parents 1018a96 + ececfe8 commit 249bc76

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed

.templates/diyhue/diyhue.env

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
IP=your_Pi's_IP_here
2+
MAC=your_Pi's_MAC_here

.templates/diyhue/service.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
diyhue:
2+
container_name: diyhue
3+
image: diyhue/core:latest
4+
ports:
5+
- "8070:80/tcp"
6+
- "1900:1900/udp"
7+
- "1982:1982/udp"
8+
- "2100:2100/udp"
9+
# - "443:443/tcp"
10+
env_file:
11+
- ./services/diyhue/diyhue.env
12+
volumes:
13+
- ./volumes/diyhue/:/opt/hue-emulator/export/
14+
restart: unless-stopped

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ IOTstack is a builder for docker-compose to easily make and maintain IoT stacks
66

77
The bulk of the README has moved to the Wiki. Please check it out [here](https://github.com/gcgarner/IOTstack/wiki)
88

9+
* 2019-11-28 PR @stfnhmplr added diyHue
910
* 2019-11-28 Fixed update notification on menu
1011
* 2019-11-28 Fixed mosquitto logs and database not mapping correctly to volumes. Pull new template to fix
1112
* 2019-11-28 added the option to disable swapfile by setting swappiness to 0
@@ -37,11 +38,11 @@ The bulk of the README has moved to the Wiki. Please check it out [here](https:/
3738

3839
## Coming soon
3940

41+
* reverse proxy is now next on the list, I cant keep up with the ports
4042
* Detection of arhcitecture for seperate stack options for amd64, armhf, i386
4143
* autocleanup of backups on cloud
42-
* reverse proxy
43-
* python contaienr
44-
* Gitea
44+
* python container
45+
* Gitea (in testing branch)
4546
* OwnCloud
4647

4748
***

menu.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,12 @@ declare -A cont_array=(
2525
[blynk_server]="blynk-server"
2626
[nextcloud]="Next-Cloud"
2727
[nginx]="NGINX by linuxserver"
28+
[diyhue]="diyHue"
2829

2930
)
3031
declare -a armhf_keys=("portainer" "nodered" "influxdb" "grafana" "mosquitto" "telegraf" "mariadb" "postgres"
3132
"adminer" "openhab" "zigbee2mqtt" "pihole" "plex" "tasmoadmin" "rtl_433" "espruinohub"
32-
"motioneye" "webthings_gateway" "blynk_server" "nextcloud")
33+
"motioneye" "webthings_gateway" "blynk_server" "nextcloud" "diyhue")
3334

3435
sys_arch=$(uname -m)
3536

0 commit comments

Comments
 (0)