Skip to content

Commit 9728062

Browse files
authored
Merge branch 'SensorsIot:master' into IOBroker
2 parents 92face8 + 75a9fb7 commit 9728062

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+3890
-766
lines changed

.templates/adguardhome/service.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
adguardhome:
2+
container_name: adguardhome
3+
image: adguard/adguardhome
4+
restart: unless-stopped
5+
environment:
6+
- TZ=Etc/UTC
7+
# enable host mode to activate DHCP server on ports 67/udp & 68/tcp+udp
8+
# note that you must also disable all other ports if you enable host mode
9+
# network_mode: host
10+
ports:
11+
# regular DNS
12+
- "53:53/tcp"
13+
- "53:53/udp"
14+
# administration port (http)
15+
# note: external and internal ports MUST be the same
16+
# not active until defined via setup port
17+
- "8089:8089/tcp"
18+
# HTTPS/DNS-over-HTTPS
19+
# - "443:443/tcp"
20+
# DNS-over-QUIC
21+
# - "784:784/udp"
22+
# DNS-over-TLS
23+
# - "853:853/tcp"
24+
# setup (http)
25+
# note: only active until port 8089 becomes active
26+
- "3001:3000/tcp"
27+
# DNSCrypt
28+
# - "5443:5443/tcp"
29+
# - "5443:5443/udp"
30+
volumes:
31+
- ./volumes/adguardhome/workdir:/opt/adguardhome/work
32+
- ./volumes/adguardhome/confdir:/opt/adguardhome/conf
33+
networks:
34+
- iotstack_nw
35+
- vpn_nw

.templates/blynk_server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ MAINTAINER 877dev <[email protected]>
55
#RUN apt-get install -y apt-utils
66
#RUN apt-get install -y default-jdk curl
77

8-
ENV BLYNK_SERVER_VERSION 0.41.14
8+
ENV BLYNK_SERVER_VERSION 0.41.16
99
RUN mkdir /blynk
1010
RUN curl -L https://github.com/blynkkk/blynk-server/releases/download/v${BLYNK_SERVER_VERSION}/server-${BLYNK_SERVER_VERSION}.jar > /blynk/server.jar
1111

.templates/deconz/service.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
deconz:
2-
image: marthoc/deconz
2+
image: marthoc/deconz:stable
33
container_name: deconz
44
restart: unless-stopped
55
ports:

.templates/dozzle/service.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ dozzle:
33
image: amir20/dozzle:latest
44
restart: unless-stopped
55
network_mode: host
6-
ports:
7-
- "8888:8080"
6+
#ports:
7+
# - "8888:8080"
88
volumes:
99
- /var/run/docker.sock:/var/run/docker.sock

.templates/home_assistant/service.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ home_assistant:
77
volumes:
88
- /etc/localtime:/etc/localtime:ro
99
- ./volumes/home_assistant:/config
10-
network_mode: host
10+
#network_mode: host
1111

.templates/homebridge/service.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ homebridge:
1010
- HOMEBRIDGE_CONFIG_UI_PORT=%WUIPort%
1111
volumes:
1212
- ./volumes/homebridge:/homebridge
13-
ports:
14-
- "4040:4040"
13+
#ports:
14+
# - "4040:4040"
1515
network_mode: host

.templates/influxdb/service.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
influxdb:
22
container_name: influxdb
3-
image: "influxdb:latest"
3+
image: "influxdb:1.8"
44
restart: unless-stopped
55
ports:
66
- "8086:8086"

.templates/mosquitto/Dockerfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Download base image
2+
FROM eclipse-mosquitto:latest
3+
4+
# Add support tools
5+
RUN apk update && apk add --no-cache rsync tzdata
6+
7+
# where IOTstack template files are stored
8+
ENV IOTSTACK_DEFAULTS_DIR="iotstack_defaults"
9+
10+
# copy template files to image
11+
COPY --chown=mosquitto:mosquitto ${IOTSTACK_DEFAULTS_DIR} /${IOTSTACK_DEFAULTS_DIR}
12+
13+
# replace the docker entry-point script
14+
ENV IOTSTACK_ENTRY_POINT="docker-entrypoint.sh"
15+
COPY ${IOTSTACK_ENTRY_POINT} /${IOTSTACK_ENTRY_POINT}
16+
RUN chmod 755 /${IOTSTACK_ENTRY_POINT}
17+
ENV IOTSTACK_ENTRY_POINT=
18+
19+
# IOTstack also declares these paths
20+
VOLUME ["/mosquitto/config", "/mosquitto/pwfile"]
21+
22+
# EOF

.templates/mosquitto/build.py

Lines changed: 0 additions & 169 deletions
This file was deleted.

.templates/mosquitto/directoryfix.sh

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)