Skip to content

Commit 92face8

Browse files
authored
Merge pull request #1 from SensorsIot/master
Merge
2 parents c4b1360 + 00f2dd9 commit 92face8

File tree

16 files changed

+42
-43
lines changed

16 files changed

+42
-43
lines changed

.templates/domoticz/service.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ domoticz:
77
- "1443:1443"
88
volumes:
99
- ./volumes/domoticz/data:/config
10-
env_file:
11-
- ./services/domoticz/domoticz.env
1210
restart: unless-stopped
1311
network_mode: bridge
1412
environment:

.templates/grafana/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def main():
3131
except:
3232
hideHelpText = False
3333

34-
documentationHint = 'https://sensorsiot.github.io/IOTstack/Containers/Adminer'
34+
documentationHint = 'https://sensorsiot.github.io/IOTstack/Containers/Grafana'
3535

3636
# This lets the menu know whether to put " >> Options " or not
3737
# This function is REQUIRED.

.templates/heimdall/heimdall.env

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

.templates/heimdall/service.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
heimdall:
22
image: ghcr.io/linuxserver/heimdall
33
container_name: heimdall
4-
env_file:
5-
- ./services/heimdall/heimdall.env
4+
environment:
5+
- PUID=1000
6+
- PGID=1000
7+
- TZ=Europe/Paris
68
volumes:
79
- ./volumes/heimdall/config:/config
810
ports:

.templates/homer/homer.env

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

.templates/homer/service.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
homer:
22
image: b4bz/homer:latest
33
container_name: homer
4-
env_file:
5-
- ./services/homer/homer.env
4+
environment:
5+
- UID=1000
6+
- GID=1000
67
volumes:
78
- ./volumes/homer/assets:/www/assets
89
ports:

.templates/influxdb/service.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ influxdb:
44
restart: unless-stopped
55
ports:
66
- "8086:8086"
7-
- "8083:8083"
8-
- "2003:2003"
97
environment:
108
- INFLUXDB_HTTP_FLUX_ENABLED=false
119
- INFLUXDB_REPORTING_DISABLED=false

.templates/mosquitto/mosquitto.conf

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
1+
# required by https://mosquitto.org/documentation/migrating-to-2-0/
2+
listener 1883
3+
14
persistence true
25
persistence_location /mosquitto/data/
36
#log_dest file /mosquitto/log/mosquitto.log
47
# To avoid flash wearing
58
log_dest stdout
69

7-
#Uncomment to enable passwords
10+
# To enable passwords:
11+
# 1. Uncomment "password_file"; and
12+
# 2. Change "allow_anonymous" to "false"
813
#password_file /mosquitto/pwfile/pwfile
9-
#allow_anonymous false
14+
allow_anonymous true
1015

1116
#Uncomment to enable filters
1217
#acl_file /mosquitto/config/filter.acl

.templates/nextcloud/service.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ nextcloud_db:
2323
image: linuxserver/mariadb
2424
container_name: nextcloud_db
2525
volumes:
26-
- ./volumes/nextcloud/db:/var/lib/mysql
26+
- ./volumes/nextcloud/db:/config
2727
environment:
2828
- MYSQL_ROOT_PASSWORD=%randomPassword%
2929
- MYSQL_PASSWORD=%randomMySqlPassword%

.templates/rtl_433/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ ENV MQTT_PORT 1883
55
ENV MQTT_USER ""
66
ENV MQTT_PASSWORD ""
77
ENV MQTT_TOPIC RTL_433
8+
ENV RTL_PARAMS "-C si"
89

910
RUN apt-get update && apt-get install -y git libtool libusb-1.0.0-dev librtlsdr-dev rtl-sdr cmake automake && \
1011
git clone https://github.com/merbanan/rtl_433.git /tmp/rtl_433 && \
@@ -15,4 +16,4 @@ RUN apt-get update && apt-get install -y git libtool libusb-1.0.0-dev librtlsdr
1516
make && \
1617
make install
1718

18-
CMD ["sh", "-c", "rtl_433 -F mqtt://${MQTT_ADDRESS}:${MQTT_PORT},events=${MQTT_TOPIC},user=${MQTT_USER},pass=${MQTT_PASSWORD}"]
19+
CMD ["sh", "-c", "rtl_433 ${RTL_PARAMS} -F mqtt://${MQTT_ADDRESS}:${MQTT_PORT},events=${MQTT_TOPIC},user=${MQTT_USER},pass=${MQTT_PASSWORD}"]

0 commit comments

Comments
 (0)