From 95862aa1fdc5cac2c71bc73a3c9314604f11f682 Mon Sep 17 00:00:00 2001 From: Andre Date: Sun, 16 Feb 2020 17:21:37 +0100 Subject: [PATCH 1/9] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ae2864d..5186613 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ The following ways to geht iobroker-container running are only examples. Maybe y For taking a first look at the iobroker docker container it would be enough to simply run the following basic docker run command: ``` -docker run -p 8081:8081 --name iobroker -v /opt/iobroker:/iobroker buanet/iobroker:latest +docker run -p 8081:8081 --name iobroker -v iobrokerdata:/opt/iobroker buanet/iobroker:latest ``` ### Running with docker-compose From 3aaa633fdf049171fa60c5b9f80b71060da8527b Mon Sep 17 00:00:00 2001 From: Andre Date: Sat, 4 Apr 2020 22:18:00 +0200 Subject: [PATCH 2/9] skipping missing packages --- amd64/scripts/setup_packages.sh | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/amd64/scripts/setup_packages.sh b/amd64/scripts/setup_packages.sh index 8dc6848..555ed68 100644 --- a/amd64/scripts/setup_packages.sh +++ b/amd64/scripts/setup_packages.sh @@ -1,7 +1,14 @@ #!/bin/bash -apt-get update -apt-get install -y $(cat /opt/scripts/.packages) +apt-get -qq update + +packages=$(cat /opt/scripts/.packages) +for i in $packages; do + sudo apt-get -qq -y install $i +done + +# apt-get install -y $(cat /opt/scripts/.packages) + rm -rf /var/lib/apt/lists/* rm -f /opt/scripts/.packages From 21b4cfdd137b69336b7e526fa3935dd272ec798d Mon Sep 17 00:00:00 2001 From: Andre Date: Sat, 4 Apr 2020 22:57:33 +0200 Subject: [PATCH 3/9] deactivate logfile for packages --- amd64/scripts/iobroker_startup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amd64/scripts/iobroker_startup.sh b/amd64/scripts/iobroker_startup.sh index 795aa6a..8966c79 100644 --- a/amd64/scripts/iobroker_startup.sh +++ b/amd64/scripts/iobroker_startup.sh @@ -75,7 +75,7 @@ then echo "Installing additional packages is set by ENV." echo "The following packages will be installed:" $packages"..." echo $packages > /opt/scripts/.packages - bash /opt/scripts/setup_packages.sh > /opt/scripts/setup_packages.log 2>&1 + bash /opt/scripts/setup_packages.sh #> /opt/scripts/setup_packages.log 2>&1 echo "Done." echo ' ' fi From 32ef7a0194262d8d0642a9c5597f43bdb97023f4 Mon Sep 17 00:00:00 2001 From: Andre Date: Sat, 4 Apr 2020 23:12:28 +0200 Subject: [PATCH 4/9] changed default for packages as vi is not available as armv7 package I changed the default to vim --- armv7hf/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/armv7hf/Dockerfile b/armv7hf/Dockerfile index a276cee..943d38b 100644 --- a/armv7hf/Dockerfile +++ b/armv7hf/Dockerfile @@ -83,7 +83,7 @@ ENV DEBIAN_FRONTEND="teletype" \ LANG="de_DE.UTF-8" \ LANGUAGE="de_DE:de" \ LC_ALL="de_DE.UTF-8" \ - PACKAGES="vi" \ + PACKAGES="vim" \ SETGID=1000 \ SETUID=1000 \ TZ="Europe/Berlin" From eb6c203d534150b6811cb44f000540d73b3ef0fc Mon Sep 17 00:00:00 2001 From: andre <> Date: Mon, 6 Apr 2020 21:40:27 +0200 Subject: [PATCH 5/9] some testing with base images --- README.md | 8 +++++--- amd64/Dockerfile | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5186613..fd6f4b7 100644 --- a/README.md +++ b/README.md @@ -117,9 +117,11 @@ You will find the channel here: https://t.me/buanet_tutorials ## Changelog -### v4.1.3beta (2020-02-08) -* added new ENVs for "iobroker setup custom" -* enhancements in startupscript logging +### v4.1.4beta (2020-04-06) +* optimizing installation of packages +* v4.1.3beta (2020-02-08) + * added new ENVs for "iobroker setup custom" + * enhancements in startupscript logging * v4.1.2beta (2020-02-02) * added feature userscripts on startup * small fix for permissions issues on some systems diff --git a/amd64/Dockerfile b/amd64/Dockerfile index 681d39d..0b84f1a 100644 --- a/amd64/Dockerfile +++ b/amd64/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:stretch +FROM amd64/debian:buster LABEL maintainer="Andre Germann" \ url="" From 7ea7ab7725a70a9d04cecf619d4de33a4609506f Mon Sep 17 00:00:00 2001 From: buanet Date: Tue, 7 Apr 2020 01:43:16 +0200 Subject: [PATCH 6/9] updated readme.md --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fd6f4b7..22ff5e6 100644 --- a/README.md +++ b/README.md @@ -110,11 +110,15 @@ To get familiar with that feature try the following: Create a Container, mount a ## Miscellaneous -### Keep me updated +### Subscribe to updates If you want the newest updates about the image and my tutorials at https://buanet.de/tutorials you can simply subscribe to my new "news and updates" channel (only in german) on Telegram. You will find the channel here: https://t.me/buanet_tutorials +### Support the project + +The easiest way to support this project is to take a look into the [open issues](https://github.com/buanet/docker-iobroker/issues) and helping me answering questions, fixing bugs or adding new features. ;)
Another possible way could be to send me a small donation: + ## Changelog ### v4.1.4beta (2020-04-06) @@ -123,7 +127,7 @@ You will find the channel here: https://t.me/buanet_tutorials * added new ENVs for "iobroker setup custom" * enhancements in startupscript logging * v4.1.2beta (2020-02-02) - * added feature userscripts on startup + * added feature for running userdefined scripts on startup * small fix for permissions issues on some systems * v4.1.1beta (2020-01-17) * updated openzwave to version 1.6.1007 From c28b840bc79f4f5105e5b5e93bf8271828b5092e Mon Sep 17 00:00:00 2001 From: Andre Date: Tue, 7 Apr 2020 01:46:37 +0200 Subject: [PATCH 7/9] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 22ff5e6..db71e42 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,7 @@ You will find the channel here: https://t.me/buanet_tutorials ### Support the project -The easiest way to support this project is to take a look into the [open issues](https://github.com/buanet/docker-iobroker/issues) and helping me answering questions, fixing bugs or adding new features. ;)
Another possible way could be to send me a small donation: +The easiest way to support this project is to take a look into the [open issues](https://github.com/buanet/docker-iobroker/issues) and helping me answering questions, fixing bugs or adding new features. ;)
Another possible way could be to send me a small donation: ## Changelog From aa98ab45785e6088122def701deffa6869ebbf78 Mon Sep 17 00:00:00 2001 From: buanet Date: Tue, 7 Apr 2020 13:44:42 +0200 Subject: [PATCH 8/9] some testing --- aarch64/Dockerfile | 3 ++- armv7hf/Dockerfile | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/aarch64/Dockerfile b/aarch64/Dockerfile index 795062f..8601f52 100644 --- a/aarch64/Dockerfile +++ b/aarch64/Dockerfile @@ -1,4 +1,5 @@ -FROM balenalib/aarch64-debian:stretch +FROM arm64v8/debian:buster +# FROM balenalib/aarch64-debian:stretch LABEL maintainer="Andre Germann" \ url="" diff --git a/armv7hf/Dockerfile b/armv7hf/Dockerfile index 943d38b..d4b960b 100644 --- a/armv7hf/Dockerfile +++ b/armv7hf/Dockerfile @@ -1,4 +1,5 @@ -FROM balenalib/armv7hf-debian:stretch +FROM arm32v7/debian:buster +# FROM balenalib/armv7hf-debian:stretch LABEL maintainer="Andre Germann" \ url="" From 4003e50bf2b8dc8d6efdc1033f8049e5a58f594d Mon Sep 17 00:00:00 2001 From: buanet Date: Tue, 7 Apr 2020 13:47:44 +0200 Subject: [PATCH 9/9] update readme --- .VERSION | 2 +- README.md | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.VERSION b/.VERSION index 6656fd3..30cafe7 100644 --- a/.VERSION +++ b/.VERSION @@ -1 +1 @@ -v4.1.3beta +v4.1.4beta diff --git a/README.md b/README.md index db71e42..c09e8d6 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,8 @@ The easiest way to support this project is to take a look into the [open issues] ## Changelog -### v4.1.4beta (2020-04-06) +### v4.1.4beta (2020-04-07) +* testing buster as base image * optimizing installation of packages * v4.1.3beta (2020-02-08) * added new ENVs for "iobroker setup custom"