-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from buanet/beta
Releasing v4
- Loading branch information
Showing
24 changed files
with
1,006 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v3.1.2beta | ||
v3.1.4beta |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
sudo: required | ||
|
||
branches: | ||
only: | ||
- master | ||
- beta | ||
|
||
services: | ||
- docker | ||
|
||
language: bash | ||
|
||
env: | ||
global: | ||
- secure: "iqK7JBsQiYceKOvRkmSa6okzXn3BygEPZjffby4agaVCwIt2SYLAcBOisOoKDpyAX+DUWlHz3gITImVa+uIna6Ue7k4C2AGJVDr87G6iq57Tn6yjrfhPs/TW9/CWvKg/G4uvKEnycMiLDXdcctSMwRr3ZwzJEdeEdmNZVsd2LP/5U0I/2K2Io22tNciSKhqlSaIfhK4f6Jk7xffnQFjwy+P9qPN18oI1fDyeHx6ZWyN3YhQQ4eGyxHjxZjlhCxSvu5R4DMf1jFIoLRAr6G5jrQacn0pG8PtBVLoYT4RsPy+fwUtXmnWWjeXK0IrU1njZf/DUteI9xnaDcHzZYj+d7MeSUc6BuWOyx9lO3ZwBWDNycYsKaF5so4RpdzoY/gfJMlK3uWDbADb46dWzPD5gb3pEROKau3fBDHS5eaR5e1Bxzz6FGoYWYfsQHqpg9g7v4BRFq+Jh0+v47fdyMxgK/Nm4+r7+ht77Usu29+X6X8F4iwrBJ/ix5xIf7iMoH/ZGvq6BEKi/1t9zdXMugcWOqwlYx9k6J9bQhBfw8YucLmgl3ynzrPaLlPEpY9cnb7hcOUDZoHI7KK2zF/y3yfNr2BqlRbm39HFWfnwuJPO5VLYGs5QubeVj9u1M+5Qo4erPuQBBc4mHP4eF2PmRA+wiVWki0z+U2skFQppkCfrbH8c=" | ||
- secure: "iqoZUcWgZueNQrNldF/ugwyU1LR5E+doTfjY0exQqAKjntG5n2QqYZ/+dX1gqvkfy1kuMINTBWfqSALbhfTTK7EfUjqmcnaks4CMVZQkhH/FyCOYHqSBSSN7j4XeHt1sXn1FRiSpyrZOUoOuyqoBRe3JoWhdQZAGxNzX3sJllwnKa6M0D6D2l9tUyTWO/jxhgTIoYBSrXvb68ZsCU9jlNBJbylfvEFwuSlwvfa+Mz9vAeCTuza9XDnvcxgwVq3r+YGxfmAhK9fOAvN+lPN+KA0LcIzBaW0sh24voqjfh/pLpsl03zeGNdWzS9r2qYPCP0N3asb5P6CVEbbAGYO1T5PvU78ILXGi4+/x/32O6/I9oXpMVQCFHNn0Gn/8BPRHY4ZOYI9ItnhV9Ncp7hhAWAAqf3KC5GM89l9R5KxFY3bhN/p8nuGresUDU5d57YkaV8rOhPpr0dbAyKFtuzG0+bT1N2ekXyTyMHeAGKiGwfD9bAS4qx6asFO5uw6UriBHNzJ59Cy3GT+W1CctaEuvqJlc6Iqz2KaBozEqnNFcpE2Grny4bzr5fp+b1qCO9TE2LhHU/LR5FTLjQ2wf9/raTM6yboq+guKeXxpySa2w8ABDq0OUAw4mrKqJQJohzBkl3oYTpWUG2JGEyMAJxjkmH0/3GwZESPNLaaYVjQByTDDY=" | ||
- VERSION="$(cat .VERSION)" | ||
|
||
before_install: | ||
- wget https://github.com/estesp/manifest-tool/releases/download/v0.7.0/manifest-tool-linux-amd64 -O manifest-tool | ||
- chmod +x manifest-tool | ||
- docker run --rm --privileged multiarch/qemu-user-static:register | ||
- echo "$HUB_PASS" | docker login -u "$HUB_USER" --password-stdin | ||
|
||
jobs: | ||
include: | ||
- stage: Build images | ||
env: | ||
- ARCH=amd64 | ||
- JOB_NAME="Build images" | ||
script: | ||
- sed -i "s/\$VERSION/${VERSION}/g" $ARCH/scripts/iobroker_startup.sh | ||
- docker build -t "buanet/iobroker:$VERSION-$ARCH" ./amd64 | ||
|
||
- stage: Build images | ||
env: | ||
- ARCH=aarch64 | ||
- JOB_NAME="Build images" | ||
script: | ||
- docker run --rm --privileged multiarch/qemu-user-static:register --reset | ||
- sed -i "s/\$VERSION/${VERSION}/g" $ARCH/scripts/iobroker_startup.sh | ||
- docker build -t "buanet/iobroker:$VERSION-$ARCH" ./aarch64 | ||
|
||
- stage: Build images | ||
env: | ||
- ARCH=armv7hf | ||
- JOB_NAME="Build images" | ||
script: | ||
- docker run --rm --privileged multiarch/qemu-user-static:register --reset | ||
- sed -i "s/\$VERSION/${VERSION}/g" $ARCH/scripts/iobroker_startup.sh | ||
- docker build -t "buanet/iobroker:$VERSION-$ARCH" ./armv7hf | ||
|
||
- stage: Manifest | ||
env: | ||
- JOB_NAME="Manifest" | ||
script: | ||
- echo Placeholder | ||
|
||
after_success: | ||
# tag and push built images | ||
- > | ||
if [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$JOB_NAME" == "Build images" ] ; then | ||
docker push buanet/iobroker:$VERSION-$ARCH | ||
fi | ||
if [ "$TRAVIS_BRANCH" == "beta" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$JOB_NAME" == "Build images" ] ; then | ||
docker push buanet/iobroker:$VERSION-$ARCH | ||
fi | ||
# update repository manifest for multiarch and push to hub | ||
- > | ||
if [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$JOB_NAME" == "Manifest" ]; then | ||
cat manifest.yml | sed "s/\$VERSION/${VERSION}/g" > manifest.yaml | ||
#manifest for image: buanet/iobroker:version | ||
cat manifest.yaml | sed "s/\$DOCKERTAG/${VERSION}/g" > manifestversion.yaml | ||
#manifest for image: buanet/iobroker:latest | ||
cat manifest.yaml | sed "s/\$DOCKERTAG/latest/g" > manifestlatest.yaml | ||
#push to hub | ||
mv manifestversion.yaml iobroker.yaml | ||
./manifest-tool --username $HUB_USER --password $HUB_PASS push from-spec iobroker.yaml | ||
mv manifestlatest.yaml iobroker.yaml | ||
./manifest-tool --username $HUB_USER --password $HUB_PASS push from-spec iobroker.yaml | ||
fi | ||
if [ "$TRAVIS_BRANCH" == "beta" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$JOB_NAME" == "Manifest" ]; then | ||
cat manifest.yml | sed "s/\$VERSION/${VERSION}/g" > manifest.yaml | ||
#manifest for image: buanet/iobroker:version | ||
cat manifest.yaml | sed "s/\$DOCKERTAG/${VERSION}/g" > manifestversion.yaml | ||
#manifest for image: buanet/iobroker:beta | ||
cat manifest.yaml | sed "s/\$DOCKERTAG/beta/g" > manifestbeta.yaml | ||
#push to hub | ||
mv manifestversion.yaml iobroker.yaml | ||
./manifest-tool --username $HUB_USER --password $HUB_PASS push from-spec iobroker.yaml | ||
mv manifestbeta.yaml iobroker.yaml | ||
./manifest-tool --username $HUB_USER --password $HUB_PASS push from-spec iobroker.yaml | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
FROM balenalib/aarch64-debian:stretch | ||
|
||
MAINTAINER Andre Germann <https://buanet.de> | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
# Install prerequisites | ||
RUN apt-get update && apt-get upgrade -y && apt-get install -y \ | ||
acl \ | ||
apt-utils \ | ||
build-essential \ | ||
curl \ | ||
git \ | ||
gnupg2 \ | ||
libcap2-bin \ | ||
libpam0g-dev \ | ||
libudev-dev \ | ||
locales \ | ||
procps \ | ||
python \ | ||
gosu \ | ||
unzip \ | ||
wget \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Install node10 | ||
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash \ | ||
&& apt-get update && apt-get install -y \ | ||
nodejs \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Generating locales | ||
RUN sed -i 's/^# *\(de_DE.UTF-8\)/\1/' /etc/locale.gen \ | ||
&& sed -i 's/^# *\(en_US.UTF-8\)/\1/' /etc/locale.gen \ | ||
&& locale-gen | ||
|
||
# Create scripts directory and copy scripts | ||
RUN mkdir -p /opt/scripts/ \ | ||
&& chmod 777 /opt/scripts/ | ||
WORKDIR /opt/scripts/ | ||
COPY scripts/iobroker_startup.sh iobroker_startup.sh | ||
COPY scripts/setup_avahi.sh setup_avahi.sh | ||
COPY scripts/setup_packages.sh setup_packages.sh | ||
COPY scripts/setup_zwave.sh setup_zwave.sh | ||
RUN chmod +x iobroker_startup.sh \ | ||
&& chmod +x setup_avahi.sh \ | ||
&& chmod +x setup_packages.sh | ||
|
||
# Install ioBroker | ||
WORKDIR / | ||
RUN apt-get update \ | ||
&& curl -sL https://raw.githubusercontent.com/ioBroker/ioBroker/stable-installer/installer.sh | bash - \ | ||
&& echo $(hostname) > /opt/iobroker/.install_host \ | ||
&& echo $(hostname) > /opt/.firstrun \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Install node-gyp | ||
WORKDIR /opt/iobroker/ | ||
RUN npm config set unsafe-perm true # To fix "Error: could not get uid/gid" | ||
RUN npm install -g node-gyp | ||
|
||
# Backup initial ioBroker-folder | ||
RUN tar -cf /opt/initial_iobroker.tar /opt/iobroker | ||
|
||
# Setting up iobroker-user | ||
RUN chsh -s /bin/bash iobroker | ||
|
||
# Setting up ENVs | ||
ENV DEBIAN_FRONTEND="teletype" \ | ||
LANG="de_DE.UTF-8" \ | ||
LANGUAGE="de_DE:de" \ | ||
LC_ALL="de_DE.UTF-8" \ | ||
TZ="Europe/Berlin" \ | ||
PACKAGES="nano" \ | ||
AVAHI="false" \ | ||
SETUID=1000 \ | ||
SETGID=1000 \ | ||
ZWAVE="false" | ||
|
||
# Setting up EXPOSE for Admin | ||
EXPOSE 8081/tcp | ||
|
||
# Run startup-script | ||
ENTRYPOINT ["/opt/scripts/iobroker_startup.sh"] |
Oops, something went wrong.