From 351bfddc8d3fdf3ee2a8e0f0d057ba5c730b691c Mon Sep 17 00:00:00 2001 From: Andre Date: Thu, 29 Mar 2018 23:02:02 +0200 Subject: [PATCH 01/11] Update README.md --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 13cfa39..fe6da5f 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,20 @@ # docker-iobroker Docker image for ioBroker (http://iobroker.net) based on debian:latest (http://hub.docker.com/_/debian/) -This project creates a Docker image for running ioBroker in a Docker container. It is made for and tested on a Synology disk station with DSM 6.0.2 and Docker 1.11.2. But it should also work on other systems running Docker.
+This project creates a Docker image for running ioBroker in a Docker container. It is made for and tested on a Synology Disk Station 1515+ with DSM 6 and Docker-Package installed. But it should also work on other systems with Docker!
Cause the container ist based on debian:latest, it acts nearly like a full virtual machine. That makes it possible to easily add some additional dependies for some ioBroker-Adapters. ## Installation & Usage -For instructions and discussion (in german) please visit ioBroker-Forum (http://forum.iobroker.net/viewtopic.php?f=17&t=5089). +A detailed tutorial (german) can be found on my Website (https://buanet.de/2017/09/iobroker-unter-docker-auf-der-synology-diskstation/).
+For discussion and support please visit ioBroker-forum-thread (http://forum.iobroker.net/viewtopic.php?f=17&t=5089) or use the comments section at the linked tutorial. Please do not contact me directly for any support-reasons. Every support-question should be answered in a public place. Thank you. + ## Changelog -### v1.1.1 (2018-03-21) +### v1.1.1 (2018-03-29) * added wget package +* updated readme.md ### v1.1.0 (2017-12-10) * changed startup call to fix restart issue From b4f7ba98b171a517f7826a5d98fee9107fe5e9fb Mon Sep 17 00:00:00 2001 From: Andre Date: Wed, 4 Apr 2018 11:15:36 +0200 Subject: [PATCH 02/11] added ENV for timezone issue --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 6a993ba..9c90d30 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,7 @@ RUN sed -i '/^rlimit-nproc/s/^\(.*\)/#\1/g' /etc/avahi/avahi-daemon.conf RUN sed -i -e 's/# de_DE.UTF-8 UTF-8/de_DE.UTF-8 UTF-8/' /etc/locale.gen && \dpkg-reconfigure --frontend=noninteractive locales && \update-locale LANG=de_DE.UTF-8 ENV LANG de_DE.UTF-8 RUN cp /usr/share/zoneinfo/Europe/Berlin /etc/localtime +ENV TZ Europe/Berlin RUN mkdir -p /opt/iobroker/ && chmod 777 /opt/iobroker/ RUN mkdir -p /opt/scripts/ && chmod 777 /opt/scripts/ From fdfbed9846daefc139ad3e518c057c0ef95e28fa Mon Sep 17 00:00:00 2001 From: Andre Date: Wed, 4 Apr 2018 11:20:28 +0200 Subject: [PATCH 03/11] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index fe6da5f..d82fcf3 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,9 @@ For discussion and support please visit ioBroker-forum-thread (http://forum.iobr ## Changelog +### v1.1.2 (2018-04-04) +* added ENV for timezone issue + ### v1.1.1 (2018-03-29) * added wget package * updated readme.md From 0f39f7ae5ee411303a2f0787e7878198a1d1e3de Mon Sep 17 00:00:00 2001 From: Andre Date: Mon, 20 Aug 2018 15:23:12 +0200 Subject: [PATCH 04/11] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9c90d30..64bc3a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ MAINTAINER Andre Germann ENV DEBIAN_FRONTEND noninteractive -RUN apt-get update && apt-get install -y build-essential python apt-utils curl avahi-daemon git libpcap-dev libavahi-compat-libdnssd-dev libfontconfig gnupg2 locales procps libudev-dev unzip sudo wget +RUN apt-get update && apt-get install -y build-essential python apt-utils curl avahi-daemon git libpcap-dev libavahi-compat-libdnssd-dev libfontconfig gnupg2 locales procps libudev-dev unzip sudo wget ffmpeg RUN curl -sL https://deb.nodesource.com/setup_6.x | bash RUN apt-get install -y nodejs From 609804ea0dc32b90e73793641d80ee3f892edebf Mon Sep 17 00:00:00 2001 From: Andre Date: Mon, 20 Aug 2018 15:26:37 +0200 Subject: [PATCH 05/11] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 64bc3a3..9c90d30 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ MAINTAINER Andre Germann ENV DEBIAN_FRONTEND noninteractive -RUN apt-get update && apt-get install -y build-essential python apt-utils curl avahi-daemon git libpcap-dev libavahi-compat-libdnssd-dev libfontconfig gnupg2 locales procps libudev-dev unzip sudo wget ffmpeg +RUN apt-get update && apt-get install -y build-essential python apt-utils curl avahi-daemon git libpcap-dev libavahi-compat-libdnssd-dev libfontconfig gnupg2 locales procps libudev-dev unzip sudo wget RUN curl -sL https://deb.nodesource.com/setup_6.x | bash RUN apt-get install -y nodejs From 834fd976c073addfe1a3565ed6ffbd72f0f103bc Mon Sep 17 00:00:00 2001 From: Andre Date: Tue, 21 Aug 2018 12:20:01 +0200 Subject: [PATCH 06/11] added ffmpeg-package --- Dockerfile | 2 +- README.md | 13 ++++++++----- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9c90d30..64bc3a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ MAINTAINER Andre Germann ENV DEBIAN_FRONTEND noninteractive -RUN apt-get update && apt-get install -y build-essential python apt-utils curl avahi-daemon git libpcap-dev libavahi-compat-libdnssd-dev libfontconfig gnupg2 locales procps libudev-dev unzip sudo wget +RUN apt-get update && apt-get install -y build-essential python apt-utils curl avahi-daemon git libpcap-dev libavahi-compat-libdnssd-dev libfontconfig gnupg2 locales procps libudev-dev unzip sudo wget ffmpeg RUN curl -sL https://deb.nodesource.com/setup_6.x | bash RUN apt-get install -y nodejs diff --git a/README.md b/README.md index d82fcf3..59283ee 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,24 @@ # docker-iobroker Docker image for ioBroker (http://iobroker.net) based on debian:latest (http://hub.docker.com/_/debian/) -This project creates a Docker image for running ioBroker in a Docker container. It is made for and tested on a Synology Disk Station 1515+ with DSM 6 and Docker-Package installed. But it should also work on other systems with Docker!
+This project creates a Docker image for running ioBroker in a Docker container. It is made for and tested on a Synology Disk Station 1515+ with DSM 6 and Docker-package installed. But it should also work on other systems with Docker!
Cause the container ist based on debian:latest, it acts nearly like a full virtual machine. That makes it possible to easily add some additional dependies for some ioBroker-Adapters. ## Installation & Usage -A detailed tutorial (german) can be found on my Website (https://buanet.de/2017/09/iobroker-unter-docker-auf-der-synology-diskstation/).
+A detailed tutorial (german) can be found on my website (https://buanet.de/2017/09/iobroker-unter-docker-auf-der-synology-diskstation/).
For discussion and support please visit ioBroker-forum-thread (http://forum.iobroker.net/viewtopic.php?f=17&t=5089) or use the comments section at the linked tutorial. Please do not contact me directly for any support-reasons. Every support-question should be answered in a public place. Thank you. ## Changelog -### v1.1.2 (2018-04-04) +### v1.1.3beta (2018-08-21) +* added ffmpeg-package for yahka to support webcams + +### v1.1.2beta (2018-04-04) * added ENV for timezone issue -### v1.1.1 (2018-03-29) +### v1.1.1beta (2018-03-29) * added wget package * updated readme.md @@ -26,7 +29,7 @@ For discussion and support please visit ioBroker-forum-thread (http://forum.iobr * added z-wave support * added logging to /opt/scripts/docker_iobroker_log.txt -### v1.0.1 (2017-08-25) +### v1.0.1beta (2017-08-25) * fixed locales issue ### v1.0.0 (2017-08-22) From dc31095c1c5850cdabf7f7f1bccc4b09878aeff7 Mon Sep 17 00:00:00 2001 From: Andre Date: Tue, 21 Aug 2018 13:31:59 +0200 Subject: [PATCH 07/11] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 59283ee..5db99fc 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,9 @@ For discussion and support please visit ioBroker-forum-thread (http://forum.iobr ## Changelog +### v1.2.0 (2018-08-21) +* after testing making 1.1.3beta to latest stable release + ### v1.1.3beta (2018-08-21) * added ffmpeg-package for yahka to support webcams From 6e8f3a14481ed492491d4bd0e85d5ab0bd821775 Mon Sep 17 00:00:00 2001 From: Andre Date: Wed, 12 Sep 2018 14:01:42 +0200 Subject: [PATCH 08/11] added support for firetv-adapter --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 64bc3a3..e9f02ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ MAINTAINER Andre Germann ENV DEBIAN_FRONTEND noninteractive -RUN apt-get update && apt-get install -y build-essential python apt-utils curl avahi-daemon git libpcap-dev libavahi-compat-libdnssd-dev libfontconfig gnupg2 locales procps libudev-dev unzip sudo wget ffmpeg +RUN apt-get update && apt-get install -y build-essential python apt-utils curl avahi-daemon git libpcap-dev libavahi-compat-libdnssd-dev libfontconfig gnupg2 locales procps libudev-dev unzip sudo wget ffmpeg android-tools-adb android-tools-fastboot RUN curl -sL https://deb.nodesource.com/setup_6.x | bash RUN apt-get install -y nodejs From eb72bfea00d6ed610b1a807acd158e3c017559da Mon Sep 17 00:00:00 2001 From: Andre Date: Wed, 12 Sep 2018 14:03:39 +0200 Subject: [PATCH 09/11] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 5db99fc..16d1824 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,9 @@ For discussion and support please visit ioBroker-forum-thread (http://forum.iobr ## Changelog +### v1.2.1beta (2018-09-12) +* added support for firetv-adapter + ### v1.2.0 (2018-08-21) * after testing making 1.1.3beta to latest stable release From 6f2eb382d5b462027e56f9ea4fbbcc58d59b158f Mon Sep 17 00:00:00 2001 From: Andre Date: Thu, 8 Nov 2018 21:34:50 +0100 Subject: [PATCH 10/11] Update iobroker_restart.sh --- maintenance_scripts/iobroker_restart.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maintenance_scripts/iobroker_restart.sh b/maintenance_scripts/iobroker_restart.sh index a6e6a63..31d3f60 100644 --- a/maintenance_scripts/iobroker_restart.sh +++ b/maintenance_scripts/iobroker_restart.sh @@ -4,8 +4,8 @@ # Kann zum Beispiel aus ioBroker heraus aufgerufen werden um ioBroker neu zu starten. cd /opt/iobroker -./iobroker stop +pkill io sleep 5 -./iobroker start +node node_modules/iobroker.js-controller/controller.js >/opt/scripts/docker_iobroker_log.txt 2>&1 & exit 0 From d56fca407406456a3ef9a245ab9b73d6396df5b7 Mon Sep 17 00:00:00 2001 From: Andre Date: Thu, 8 Nov 2018 21:35:21 +0100 Subject: [PATCH 11/11] Update iobroker_stop.sh --- maintenance_scripts/iobroker_stop.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance_scripts/iobroker_stop.sh b/maintenance_scripts/iobroker_stop.sh index a4dacf4..4c2e4fc 100644 --- a/maintenance_scripts/iobroker_stop.sh +++ b/maintenance_scripts/iobroker_stop.sh @@ -4,6 +4,6 @@ # Kann zum Beispiel aus ioBroker heraus aufgerufen werden um ioBroker zu stoppen. cd /opt/iobroker -./iobroker stop +pkill io exit 0