mirror of
https://github.com/buanet/ioBroker.docker.git
synced 2025-12-22 20:55:40 +02:00
17
README.md
17
README.md
@@ -112,18 +112,25 @@ To get familiar with that feature try the following: Create a Container, mount a
|
|||||||
|
|
||||||
## Miscellaneous
|
## 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.
|
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
|
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. ;)<br>Another possible way could be to send me a small donation: <a href="https://www.paypal.me/buanet" target="_blank"><img src="https://buanet.de/wp-content/uploads/2017/08/pp128.png" height="20" width="20"></a>
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
### v4.1.3beta (2020-02-08)
|
### v4.1.4beta (2020-04-07)
|
||||||
* added new ENVs for "iobroker setup custom"
|
* testing buster as base image
|
||||||
* enhancements in startupscript logging
|
* 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)
|
* 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
|
* small fix for permissions issues on some systems
|
||||||
* v4.1.1beta (2020-01-17)
|
* v4.1.1beta (2020-01-17)
|
||||||
* updated openzwave to version 1.6.1007
|
* updated openzwave to version 1.6.1007
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
FROM balenalib/aarch64-debian:stretch
|
FROM arm64v8/debian:buster
|
||||||
|
# FROM balenalib/aarch64-debian:stretch
|
||||||
|
|
||||||
LABEL maintainer="Andre Germann" \
|
LABEL maintainer="Andre Germann" \
|
||||||
url="<https://buanet.de>"
|
url="<https://buanet.de>"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
FROM debian:stretch
|
FROM amd64/debian:buster
|
||||||
|
|
||||||
LABEL maintainer="Andre Germann" \
|
LABEL maintainer="Andre Germann" \
|
||||||
url="<https://buanet.de>"
|
url="<https://buanet.de>"
|
||||||
|
|||||||
@@ -75,7 +75,7 @@ then
|
|||||||
echo "Installing additional packages is set by ENV."
|
echo "Installing additional packages is set by ENV."
|
||||||
echo "The following packages will be installed:" $packages"..."
|
echo "The following packages will be installed:" $packages"..."
|
||||||
echo $packages > /opt/scripts/.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 "Done."
|
||||||
echo ' '
|
echo ' '
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -1,7 +1,14 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
apt-get update
|
apt-get -qq update
|
||||||
apt-get install -y $(cat /opt/scripts/.packages)
|
|
||||||
|
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 -rf /var/lib/apt/lists/*
|
||||||
rm -f /opt/scripts/.packages
|
rm -f /opt/scripts/.packages
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
FROM balenalib/armv7hf-debian:stretch
|
FROM arm32v7/debian:buster
|
||||||
|
# FROM balenalib/armv7hf-debian:stretch
|
||||||
|
|
||||||
LABEL maintainer="Andre Germann" \
|
LABEL maintainer="Andre Germann" \
|
||||||
url="<https://buanet.de>"
|
url="<https://buanet.de>"
|
||||||
@@ -83,7 +84,7 @@ ENV DEBIAN_FRONTEND="teletype" \
|
|||||||
LANG="de_DE.UTF-8" \
|
LANG="de_DE.UTF-8" \
|
||||||
LANGUAGE="de_DE:de" \
|
LANGUAGE="de_DE:de" \
|
||||||
LC_ALL="de_DE.UTF-8" \
|
LC_ALL="de_DE.UTF-8" \
|
||||||
PACKAGES="vi" \
|
PACKAGES="vim" \
|
||||||
SETGID=1000 \
|
SETGID=1000 \
|
||||||
SETUID=1000 \
|
SETUID=1000 \
|
||||||
TZ="Europe/Berlin"
|
TZ="Europe/Berlin"
|
||||||
|
|||||||
Reference in New Issue
Block a user