File tree Expand file tree Collapse file tree 4 files changed +22
-4
lines changed Expand file tree Collapse file tree 4 files changed +22
-4
lines changed Original file line number Diff line number Diff line change
1
+ IP = your_Pi's_IP_here
2
+ MAC = your_Pi's_MAC_here
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ IOTstack is a builder for docker-compose to easily make and maintain IoT stacks
6
6
7
7
The bulk of the README has moved to the Wiki. Please check it out [ here] ( https://github.com/gcgarner/IOTstack/wiki )
8
8
9
+ * 2019-11-28 PR @stfnhmplr added diyHue
9
10
* 2019-11-28 Fixed update notification on menu
10
11
* 2019-11-28 Fixed mosquitto logs and database not mapping correctly to volumes. Pull new template to fix
11
12
* 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:/
37
38
38
39
## Coming soon
39
40
41
+ * reverse proxy is now next on the list, I cant keep up with the ports
40
42
* Detection of arhcitecture for seperate stack options for amd64, armhf, i386
41
43
* autocleanup of backups on cloud
42
- * reverse proxy
43
- * python contaienr
44
- * Gitea
44
+ * python container
45
+ * Gitea (in testing branch)
45
46
* OwnCloud
46
47
47
48
***
Original file line number Diff line number Diff line change @@ -25,11 +25,12 @@ declare -A cont_array=(
25
25
[blynk_server]=" blynk-server"
26
26
[nextcloud]=" Next-Cloud"
27
27
[nginx]=" NGINX by linuxserver"
28
+ [diyhue]=" diyHue"
28
29
29
30
)
30
31
declare -a armhf_keys=(" portainer" " nodered" " influxdb" " grafana" " mosquitto" " telegraf" " mariadb" " postgres"
31
32
" adminer" " openhab" " zigbee2mqtt" " pihole" " plex" " tasmoadmin" " rtl_433" " espruinohub"
32
- " motioneye" " webthings_gateway" " blynk_server" " nextcloud" )
33
+ " motioneye" " webthings_gateway" " blynk_server" " nextcloud" " diyhue " )
33
34
34
35
sys_arch=$( uname -m)
35
36
You can’t perform that action at this time.
0 commit comments