Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .templates/duplicati/service.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
duplicati:
container_name: Duplicati
restart: unless-stopped
image: lsioarmhf/duplicati
image: linuxserver/duplicati
network_mode: host
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
#ports:
# - 8200:8200
volumes:
- /etc:/etc_host
- /home/pi/Scripts:/pi_scripts
- /:/source
- ./volumes/duplicati:/config
- /etc/localtime:/etc/localtime:ro
Expand Down
9 changes: 9 additions & 0 deletions .templates/homeassistant/service.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
homeassistant:
container_name: home-assistant
image: homeassistant/raspberrypi4-homeassistant
volumes:
- ./volumes/homeassistant:/config
environment:
- TZ=Europe/Rome
restart: always
network_mode: host
4 changes: 3 additions & 1 deletion menu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ declare -A cont_array=(
[nodered]="Node-RED"
[influxdb]="InfluxDB"
[telegraf]="Telegraf (Requires InfluxDB and Mosquitto)"
[duplicati]="duplicati"
[homeassistant]="homeassistant"
[grafana]="Grafana"
[mosquitto]="Eclipse-Mosquitto"
[postgres]="Postgres"
Expand All @@ -30,7 +32,7 @@ declare -A cont_array=(
[python]="Python 3"

)
declare -a armhf_keys=("portainer" "nodered" "influxdb" "grafana" "mosquitto" "telegraf" "mariadb" "postgres"
declare -a armhf_keys=("portainer" "nodered" "influxdb" "grafana" "mosquitto" "telegraf" "duplicati" "homeassistant" "mariadb" "postgres"
"adminer" "openhab" "zigbee2mqtt" "pihole" "plex" "tasmoadmin" "rtl_433" "espruinohub"
"motioneye" "webthings_gateway" "blynk_server" "nextcloud" "diyhue" "homebridge" "python")

Expand Down