mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-06-02 05:44:03 +02:00
other base image
This commit is contained in:
22
zzz_draft_birdnet-pi2/CHANGELOG.md
Normal file
22
zzz_draft_birdnet-pi2/CHANGELOG.md
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
## 1.3 (26-04-2024)
|
||||||
|
- Minor bugs fixed
|
||||||
|
## 1.2 (25-04-2024)
|
||||||
|
- Minor bugs fixed
|
||||||
|
## 1.0 (25-04-2024)
|
||||||
|
- Minor bugs fixed
|
||||||
|
## 0.9 (25-04-2024)
|
||||||
|
- Minor bugs fixed
|
||||||
|
## 0.6 (24-04-2024)
|
||||||
|
- Minor bugs fixed
|
||||||
|
## 0.7 (24-04-2024)
|
||||||
|
- Minor bugs fixed
|
||||||
|
## 0.3 (23-04-2024)
|
||||||
|
- Minor bugs fixed
|
||||||
|
## 0.1 (23-04-2024)
|
||||||
|
- Minor bugs fixed
|
||||||
|
## 0.2 (23-04-2024)
|
||||||
|
- Feat : Allow to define the /clips folder
|
||||||
|
- Feat : Allow mounting of SMB and local drives
|
||||||
|
|
||||||
|
## 0.5.1 (22-04-2024)
|
||||||
|
- Initial build
|
||||||
190
zzz_draft_birdnet-pi2/Dockerfile
Normal file
190
zzz_draft_birdnet-pi2/Dockerfile
Normal file
@@ -0,0 +1,190 @@
|
|||||||
|
#============================#
|
||||||
|
# ALEXBELGIUM'S DOCKERFILE #
|
||||||
|
#============================#
|
||||||
|
# _.------.
|
||||||
|
# _.-` ('>.-`"""-.
|
||||||
|
# '.--'` _'` _ .--.)
|
||||||
|
# -' '-.-';` `
|
||||||
|
# ' - _.' ``'--.
|
||||||
|
# '---` .-'""`
|
||||||
|
# /`
|
||||||
|
#=== Home Assistant Addon ===#
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 1 Build Image #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ARG BUILD_VERSION
|
||||||
|
ARG BUILD_FROM
|
||||||
|
FROM ${BUILD_FROM}
|
||||||
|
|
||||||
|
ENV DEBIAN_FRONTEND="noninteractive" \
|
||||||
|
BIRDNET_USER="pi" \
|
||||||
|
USER="pi" \
|
||||||
|
PUID=1000 \
|
||||||
|
PGID=1000 \
|
||||||
|
HOME="/home/pi" \
|
||||||
|
XDG_RUNTIME_DIR="/run/user/1000" \
|
||||||
|
PYTHON_VIRTUAL_ENV="/home/pi/birdnet-pi2/birdnet/bin/python3"
|
||||||
|
|
||||||
|
# hadolint ignore=DL3015,SC2016
|
||||||
|
RUN \
|
||||||
|
# Install dependencies
|
||||||
|
echo "Install dependencies" && \
|
||||||
|
apt-get update -y && apt-get install gcc python3-dev git jq sudo -y && \
|
||||||
|
\
|
||||||
|
# Change user to pi and create /home/pi
|
||||||
|
echo "setting users" && \
|
||||||
|
groupmod -o -g 101 abc && usermod -o -u 101 abc && \
|
||||||
|
groupadd --non-unique -g 1000 pi && \
|
||||||
|
useradd --non-unique --uid 1000 --gid 1000 -m pi && \
|
||||||
|
\
|
||||||
|
# Ensure permissions
|
||||||
|
echo "setting permissions" && \
|
||||||
|
echo "pi ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers && \
|
||||||
|
mkdir -p /home/pi/.config/matplotlib && \
|
||||||
|
chown -R 1000:1000 /home/pi && \
|
||||||
|
\
|
||||||
|
# Download installer
|
||||||
|
curl -f -L -s -S "https://raw.githubusercontent.com/Nachtzuster/birdnet-pi2/main/newinstaller.sh" -o /newinstaller.sh && \
|
||||||
|
chmod 777 /newinstaller.sh && \
|
||||||
|
\
|
||||||
|
# Modify installer
|
||||||
|
# Avoid rebooting at end of installation
|
||||||
|
sed -i "/reboot/d" /newinstaller.sh && \
|
||||||
|
# Use apt-get as without user action
|
||||||
|
sed -i "s|apt |apt-get |g" /newinstaller.sh && \
|
||||||
|
# Remove all instances of sudo from the newinstaller
|
||||||
|
sed -i -e "s|== 0|== 7|g" -e "s|sudo -n true|true|g" -e "s|sudo -K|true|g" /newinstaller.sh && \
|
||||||
|
# Remove all instances of sudo from all other scripts
|
||||||
|
sed -i '1a for file in $(grep -srl "sudo" $HOME/birdnet-pi2/scripts); do sed -i "s|sudo ||" "$file"; done' /newinstaller.sh && \
|
||||||
|
sed -i '1a for file in $(grep -srl "my_dir" $HOME/birdnet-pi2/scripts); do sed -i "s|\$my_dir|/config|" "$file"; done' /newinstaller.sh && \
|
||||||
|
sed -i '1a for file in $(grep -srl "install_services.sh" $HOME/birdnet-pi2/scripts); do sed -i "/install_services.sh/c ./install_services.sh" "$file"; done' /newinstaller.sh && \
|
||||||
|
# Avoid systemctl
|
||||||
|
sed -i '/git clone/a sed -i "s|systemctl enable|#systemctl enable|g" "$HOME"/birdnet-pi2/scripts/install_services.sh' /newinstaller.sh && \
|
||||||
|
\
|
||||||
|
# Execute installer
|
||||||
|
/./newinstaller.sh && \
|
||||||
|
\
|
||||||
|
# Adapt for lsio usage of /app
|
||||||
|
if [ -d /app ]; then rm -r /app; fi && \
|
||||||
|
ln -s /home/pi /app && \
|
||||||
|
chown -R 1000:1000 /home/pi /app
|
||||||
|
|
||||||
|
#USER pi
|
||||||
|
#WORKDIR /app
|
||||||
|
#RUN export DEBIAN_FRONTEND noninteractive && \
|
||||||
|
# export BIRDNET_USER="pi" && \
|
||||||
|
# export USER="pi" && \
|
||||||
|
# export HOME="/app" && \
|
||||||
|
# echo "HOME is $HOME" && \
|
||||||
|
# ls -l /app && \
|
||||||
|
# sudo chown -R pi:pi /app && \
|
||||||
|
# /./newinstaller.sh
|
||||||
|
#USER root
|
||||||
|
#sudo -E -u birdnet -s /bin/bash -c "/newinstaller.sh"
|
||||||
|
# Correct script
|
||||||
|
#sed -i "s|== 0|== 7|g" /newinstaller.sh && \
|
||||||
|
#sed -i "s|sudo -n true|true|g" /newinstaller.sh && \
|
||||||
|
#sed -i "s|sudo -K|true|g" /newinstaller.sh && \
|
||||||
|
#for file in $(grep -srl "sudo" $HOME/birdnet-pi2/scripts); do \sed -i "s|sudo ||" "$file"; done && \
|
||||||
|
#/./newinstaller.sh
|
||||||
|
# Correct for absence of sudo
|
||||||
|
#sudo -E -u birdnet -s /bin/bash -c "/newinstaller.sh"
|
||||||
|
|
||||||
|
##################
|
||||||
|
# 2 Modify Image #
|
||||||
|
##################
|
||||||
|
|
||||||
|
# Set S6 wait time
|
||||||
|
ENV S6_CMD_WAIT_FOR_SERVICES=1 \
|
||||||
|
S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 \
|
||||||
|
S6_SERVICES_GRACETIME=0
|
||||||
|
|
||||||
|
##################
|
||||||
|
# 3 Install apps #
|
||||||
|
##################
|
||||||
|
|
||||||
|
# Add rootfs
|
||||||
|
COPY rootfs/ /
|
||||||
|
|
||||||
|
# Uses /bin for compatibility purposes
|
||||||
|
# hadolint ignore=DL4005
|
||||||
|
RUN if [ ! -f /bin/sh ] && [ -f /usr/bin/sh ]; then ln -s /usr/bin/sh /bin/sh; fi && \
|
||||||
|
if [ ! -f /bin/bash ] && [ -f /usr/bin/bash ]; then ln -s /usr/bin/bash /bin/bash; fi
|
||||||
|
|
||||||
|
# Modules
|
||||||
|
ARG MODULES="00-local_mounts.sh 00-smb_mounts.sh"
|
||||||
|
|
||||||
|
# Automatic modules download
|
||||||
|
ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_automodules.sh" "/ha_automodules.sh"
|
||||||
|
RUN chmod 744 /ha_automodules.sh && /ha_automodules.sh "$MODULES" && rm /ha_automodules.sh
|
||||||
|
|
||||||
|
# Manual apps
|
||||||
|
ENV PACKAGES="alsa-utils libasound2-plugins nginx"
|
||||||
|
|
||||||
|
# Automatic apps & bashio
|
||||||
|
ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_autoapps.sh" "/ha_autoapps.sh"
|
||||||
|
RUN chmod 744 /ha_autoapps.sh && /ha_autoapps.sh "$PACKAGES" && rm /ha_autoapps.sh
|
||||||
|
|
||||||
|
################
|
||||||
|
# 4 Entrypoint #
|
||||||
|
################
|
||||||
|
|
||||||
|
# Add entrypoint
|
||||||
|
ENV S6_STAGE2_HOOK=/ha_entrypoint.sh
|
||||||
|
ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_entrypoint.sh" "/ha_entrypoint.sh"
|
||||||
|
|
||||||
|
# Entrypoint modifications
|
||||||
|
ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_entrypoint_modif.sh" "/ha_entrypoint_modif.sh"
|
||||||
|
RUN chmod 777 /ha_entrypoint.sh /ha_entrypoint_modif.sh && /ha_entrypoint_modif.sh && rm /ha_entrypoint_modif.sh
|
||||||
|
|
||||||
|
# Avoid config.yaml interference
|
||||||
|
WORKDIR /config
|
||||||
|
#ENTRYPOINT ["/lib/systemd/systemd"]
|
||||||
|
#ENTRYPOINT [ "/usr/bin/env" ]
|
||||||
|
#CMD [ "/ha_entrypoint.sh" ]
|
||||||
|
#SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||||
|
|
||||||
|
############
|
||||||
|
# 5 Labels #
|
||||||
|
############
|
||||||
|
|
||||||
|
ARG BUILD_ARCH
|
||||||
|
ARG BUILD_DATE
|
||||||
|
ARG BUILD_DESCRIPTION
|
||||||
|
ARG BUILD_NAME
|
||||||
|
ARG BUILD_REF
|
||||||
|
ARG BUILD_REPOSITORY
|
||||||
|
ARG BUILD_VERSION
|
||||||
|
LABEL \
|
||||||
|
io.hass.name="${BUILD_NAME}" \
|
||||||
|
io.hass.description="${BUILD_DESCRIPTION}" \
|
||||||
|
io.hass.arch="${BUILD_ARCH}" \
|
||||||
|
io.hass.type="addon" \
|
||||||
|
io.hass.version=${BUILD_VERSION} \
|
||||||
|
maintainer="alexbelgium (https://github.com/alexbelgium)" \
|
||||||
|
org.opencontainers.image.title="${BUILD_NAME}" \
|
||||||
|
org.opencontainers.image.description="${BUILD_DESCRIPTION}" \
|
||||||
|
org.opencontainers.image.vendor="Home Assistant Add-ons" \
|
||||||
|
org.opencontainers.image.authors="alexbelgium (https://github.com/alexbelgium)" \
|
||||||
|
org.opencontainers.image.licenses="MIT" \
|
||||||
|
org.opencontainers.image.url="https://github.com/alexbelgium" \
|
||||||
|
org.opencontainers.image.source="https://github.com/${BUILD_REPOSITORY}" \
|
||||||
|
org.opencontainers.image.documentation="https://github.com/${BUILD_REPOSITORY}/blob/main/README.md" \
|
||||||
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|
||||||
|
#################
|
||||||
|
# 6 Healthcheck #
|
||||||
|
#################
|
||||||
|
|
||||||
|
ENV HEALTH_PORT="80" \
|
||||||
|
HEALTH_URL=""
|
||||||
|
HEALTHCHECK \
|
||||||
|
--interval=5s \
|
||||||
|
--retries=5 \
|
||||||
|
--start-period=30s \
|
||||||
|
--timeout=25s \
|
||||||
|
CMD curl --fail "http://127.0.0.1:${HEALTH_PORT}${HEALTH_URL}" &>/dev/null || exit 1
|
||||||
81
zzz_draft_birdnet-pi2/README.md
Normal file
81
zzz_draft_birdnet-pi2/README.md
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
# Home assistant add-on: birdnet-pi2
|
||||||
|
|
||||||
|
[![Donate][donation-badge]](https://www.buymeacoffee.com/alexbelgium)
|
||||||
|
|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
|
[](https://www.codacy.com/gh/alexbelgium/hassio-addons/dashboard?utm_source=github.com&utm_medium=referral&utm_content=alexbelgium/hassio-addons&utm_campaign=Badge_Grade)
|
||||||
|
[](https://github.com/alexbelgium/hassio-addons/actions/workflows/weekly-supelinter.yaml)
|
||||||
|
[](https://github.com/alexbelgium/hassio-addons/actions/workflows/onpush_builder.yaml)
|
||||||
|
|
||||||
|
[donation-badge]: https://img.shields.io/badge/Buy%20me%20a%20coffee-%23d32f2f?logo=buy-me-a-coffee&style=flat&logoColor=white
|
||||||
|
|
||||||
|
_Thanks to everyone having starred my repo! To star it click on the image below, then it will be on top right. Thanks!_
|
||||||
|
|
||||||
|
[](https://github.com/alexbelgium/hassio-addons/stargazers)
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## About
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
[birdnet-pi2](https://github.com/tphakala/birdnet-pi2/tree/main) is an AI solution for continuous avian monitoring and identification developed by @tphakala
|
||||||
|
|
||||||
|
This addon is based on their docker image.
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
|
||||||
|
Install, then start the addon a first time
|
||||||
|
Webui can be found at <http://homeassistant:8080>.
|
||||||
|
|
||||||
|
You'll need a microphone : either use one connected to HA or the audio stream of a rstp camera.
|
||||||
|
|
||||||
|
Options can be configured through three ways :
|
||||||
|
|
||||||
|
- Addon options
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
ALSA_CARD : number of the card (0 or 1 usually), see https://github.com/tphakala/birdnet-pi2/blob/main/doc/installation.md#deciding-alsa_card-value
|
||||||
|
TZ: Etc/UTC specify a timezone to use, see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
|
||||||
|
COMMAND : realtime --rtsp url # allows to provide arguments to birdnet-pi2
|
||||||
|
```
|
||||||
|
|
||||||
|
- Config.yaml
|
||||||
|
Additional variables can be configured using the config.yaml file found in /config/db21ed7f_birdnet-pi2/config.yaml using the Filebrowser addon
|
||||||
|
|
||||||
|
- Config_env.yaml
|
||||||
|
Additional environment variables can be configured there
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
The installation of this add-on is pretty straightforward and not different in comparison to installing any other add-on.
|
||||||
|
|
||||||
|
1. Add my add-ons repository to your home assistant instance (in supervisor addons store at top right, or click button below if you have configured my HA)
|
||||||
|
[](https://my.home-assistant.io/redirect/supervisor_add_addon_repository/?repository_url=https%3A%2F%2Fgithub.com%2Falexbelgium%2Fhassio-addons)
|
||||||
|
1. Install this add-on.
|
||||||
|
1. Click the `Save` button to store your configuration.
|
||||||
|
1. Set the add-on options to your preferences
|
||||||
|
1. Start the add-on.
|
||||||
|
1. Check the logs of the add-on to see if everything went well.
|
||||||
|
1. Open the webUI and adapt the software options
|
||||||
|
|
||||||
|
## Integration with HA
|
||||||
|
|
||||||
|
Not yet available
|
||||||
|
|
||||||
|
## Common issues
|
||||||
|
|
||||||
|
Not yet available
|
||||||
|
|
||||||
|
## Support
|
||||||
|
|
||||||
|
Create an issue on github
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|

|
||||||
66
zzz_draft_birdnet-pi2/apparmor.txt
Normal file
66
zzz_draft_birdnet-pi2/apparmor.txt
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
#include <tunables/global>
|
||||||
|
|
||||||
|
profile birdnet-pi2_addon flags=(attach_disconnected,mediate_deleted) {
|
||||||
|
#include <abstractions/base>
|
||||||
|
|
||||||
|
capability,
|
||||||
|
file,
|
||||||
|
signal,
|
||||||
|
mount,
|
||||||
|
umount,
|
||||||
|
remount,
|
||||||
|
network udp,
|
||||||
|
network tcp,
|
||||||
|
network dgram,
|
||||||
|
network stream,
|
||||||
|
network inet,
|
||||||
|
network inet6,
|
||||||
|
network netlink raw,
|
||||||
|
network unix dgram,
|
||||||
|
|
||||||
|
capability setgid,
|
||||||
|
capability setuid,
|
||||||
|
capability sys_admin,
|
||||||
|
capability dac_read_search,
|
||||||
|
# capability dac_override,
|
||||||
|
# capability sys_rawio,
|
||||||
|
|
||||||
|
# S6-Overlay
|
||||||
|
/init ix,
|
||||||
|
/run/{s6,s6-rc*,service}/** ix,
|
||||||
|
/package/** ix,
|
||||||
|
/command/** ix,
|
||||||
|
/run/{,**} rwk,
|
||||||
|
/dev/tty rw,
|
||||||
|
/bin/** ix,
|
||||||
|
/usr/bin/** ix,
|
||||||
|
/usr/lib/bashio/** ix,
|
||||||
|
/etc/s6/** rix,
|
||||||
|
/run/s6/** rix,
|
||||||
|
/etc/services.d/** rwix,
|
||||||
|
/etc/cont-init.d/** rwix,
|
||||||
|
/etc/cont-finish.d/** rwix,
|
||||||
|
/init rix,
|
||||||
|
/var/run/** mrwkl,
|
||||||
|
/var/run/ mrwkl,
|
||||||
|
/dev/i2c-1 mrwkl,
|
||||||
|
# Files required
|
||||||
|
/dev/fuse mrwkl,
|
||||||
|
/dev/sda1 mrwkl,
|
||||||
|
/dev/sdb1 mrwkl,
|
||||||
|
/dev/nvme0 mrwkl,
|
||||||
|
/dev/nvme1 mrwkl,
|
||||||
|
/dev/mmcblk0p1 mrwkl,
|
||||||
|
/dev/* mrwkl,
|
||||||
|
/tmp/** mrkwl,
|
||||||
|
|
||||||
|
# Data access
|
||||||
|
/data/** rw,
|
||||||
|
|
||||||
|
# suppress ptrace denials when using 'docker ps' or using 'ps' inside a container
|
||||||
|
ptrace (trace,read) peer=docker-default,
|
||||||
|
|
||||||
|
# docker daemon confinement requires explict allow rule for signal
|
||||||
|
signal (receive) set=(kill,term) peer=/usr/bin/docker,
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
|
||||||
|
if { sleep 3 }
|
||||||
|
s6-svc -u /etc/s6-overlay/s6-rc.d/svc-custom_recording
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
s6-envdir /run/user/1000
|
||||||
|
s6-setuidgid ${USER}
|
||||||
|
/usr/local/bin/custom_recording.sh
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
longrun
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
|
||||||
|
if { sleep 3 }
|
||||||
|
s6-svc -u /etc/s6-overlay/s6-rc.d/svc-avahi_alias
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
s6-setuidgid ${USER}
|
||||||
|
|
||||||
|
echo "Starting service: avahi alias"
|
||||||
|
/bin/bash -c "/usr/bin/avahi-publish -a -R %I $(hostname -I |cut -d' ' -f1)"
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
longrun
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
|
||||||
|
if { sleep 3 }
|
||||||
|
s6-svc -u /etc/s6-overlay/s6-rc.d/svc-birdnet_analysis
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
echo "Starting service: birdnet analysis"
|
||||||
|
|
||||||
|
exec \
|
||||||
|
s6-setuidgid "$USER" "$PYTHON_VIRTUAL_ENV /usr/local/bin/birdnet_analysis.py"
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
longrun
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
|
||||||
|
if { sleep 3 }
|
||||||
|
s6-svc -u /etc/s6-overlay/s6-rc.d/svc-birdnet_log
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
echo "Starting service: birdnet log"
|
||||||
|
exec \
|
||||||
|
s6-setuidgid "$USER" "/usr/local/bin/gotty --address localhost -p 8080 --path log --title-format 'birdnet-pi2 Log' birdnet_log.sh"
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
longrun
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
|
||||||
|
if { sleep 6 }
|
||||||
|
s6-svc -u /etc/s6-overlay/s6-rc.d/svc-birdnet_recording
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
echo "Starting service: birdnet recording"
|
||||||
|
exec \
|
||||||
|
s6-setuidgid "$USER" "/usr/local/bin/birdnet_recording.sh"
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
longrun
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
|
||||||
|
if { sleep 5 }
|
||||||
|
s6-svc -u /etc/s6-overlay/s6-rc.d/svc-birdnet_stats
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
s6-setuidgid ${USER}
|
||||||
|
echo "Starting service: birdnet stats"
|
||||||
|
exec \
|
||||||
|
s6-setuidgid "$USER" "$HOME/birdnet-pi2/birdnet/bin/streamlit run $HOME/birdnet-pi2/scripts/plotly_streamlit.py --browser.gatherUsageStats false --server.address localhost --server.baseUrlPath '/stats'"
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
longrun
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
|
||||||
|
if { sleep 3 }
|
||||||
|
s6-svc -u /etc/s6-overlay/s6-rc.d/svc-caddy
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
echo "Starting service: caddy"
|
||||||
|
exec \
|
||||||
|
s6-setuidgid "$USER" "/usr/local/bin/caddy run --config /etc/caddy/Caddyfile"
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
longrun
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
|
||||||
|
if { sleep 120 }
|
||||||
|
s6-svc -u /etc/s6-overlay/s6-rc.d/svc-chart_viewer
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
echo "Starting service: chart viewer"
|
||||||
|
exec \
|
||||||
|
s6-setuidgid "$USER" "$PYTHON_VIRTUAL_ENV /usr/local/bin/daily_plot.py --daemon --sleep 2"
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
longrun
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
|
||||||
|
if { sleep 3 }
|
||||||
|
s6-svc -u /etc/s6-overlay/s6-rc.d/svc-getty
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
echo "Starting service: getty"
|
||||||
|
exec \
|
||||||
|
s6-setuidgid "$USER" "/sbin/agetty --autologin ${USER} --noclear %I $TERM"
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
longrun
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
|
||||||
|
if { sleep 3 }
|
||||||
|
s6-svc -u /etc/s6-overlay/s6-rc.d/svc-livestream
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
echo "Starting service: livestream"
|
||||||
|
exec \
|
||||||
|
s6-setuidgid "$USER" "/usr/local/bin/livestream.sh"
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
longrun
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
|
||||||
|
if { sleep 10 }
|
||||||
|
s6-svc -u /etc/s6-overlay/s6-rc.d/svc-spectrogram_viewer
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
echo "Starting service: spectrogram viewer"
|
||||||
|
exec \
|
||||||
|
s6-setuidgid "$USER" "/usr/local/bin/spectrogram.sh"
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
longrun
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
|
||||||
|
if { sleep 3 }
|
||||||
|
s6-svc -u /etc/s6-overlay/s6-rc.d/svc-web_terminal
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
echo "Starting service: web terminal"
|
||||||
|
exec \
|
||||||
|
s6-setuidgid "$USER" "/usr/local/bin/gotty --address localhost -w -p 8888 --path terminal --title-format 'birdnet-pi2 Terminal' login"
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
longrun
|
||||||
6
zzz_draft_birdnet-pi2/build.yaml
Normal file
6
zzz_draft_birdnet-pi2/build.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
build_from:
|
||||||
|
aarch64: ghcr.io/linuxserver/baseimage-kasmvnc:debianbookworm
|
||||||
|
amd64: ghcr.io/linuxserver/baseimage-kasmvnc:debianbookworm
|
||||||
|
codenotary:
|
||||||
|
signer: alexandrep.github@gmail.com
|
||||||
102
zzz_draft_birdnet-pi2/config.json
Normal file
102
zzz_draft_birdnet-pi2/config.json
Normal file
@@ -0,0 +1,102 @@
|
|||||||
|
{
|
||||||
|
"arch": [
|
||||||
|
"aarch64",
|
||||||
|
"amd64"
|
||||||
|
],
|
||||||
|
"audio": true,
|
||||||
|
"codenotary": "alexandrep.github@gmail.com",
|
||||||
|
"devices": [
|
||||||
|
"/dev/dri",
|
||||||
|
"/dev/dri/card0",
|
||||||
|
"/dev/dri/card1",
|
||||||
|
"/dev/dri/renderD128",
|
||||||
|
"/dev/vchiq",
|
||||||
|
"/dev/video10",
|
||||||
|
"/dev/video11",
|
||||||
|
"/dev/video12",
|
||||||
|
"/dev/video13",
|
||||||
|
"/dev/video14",
|
||||||
|
"/dev/video15",
|
||||||
|
"/dev/video16",
|
||||||
|
"/dev/ttyUSB0",
|
||||||
|
"/dev/sda",
|
||||||
|
"/dev/sdb",
|
||||||
|
"/dev/sdc",
|
||||||
|
"/dev/sdd",
|
||||||
|
"/dev/sde",
|
||||||
|
"/dev/sdf",
|
||||||
|
"/dev/sdg",
|
||||||
|
"/dev/nvme",
|
||||||
|
"/dev/nvme0n1p1",
|
||||||
|
"/dev/nvme0n1p2",
|
||||||
|
"/dev/mmcblk",
|
||||||
|
"/dev/fuse",
|
||||||
|
"/dev/sda1",
|
||||||
|
"/dev/sdb1",
|
||||||
|
"/dev/sdc1",
|
||||||
|
"/dev/sdd1",
|
||||||
|
"/dev/sde1",
|
||||||
|
"/dev/sdf1",
|
||||||
|
"/dev/sdg1",
|
||||||
|
"/dev/sda2",
|
||||||
|
"/dev/sdb2",
|
||||||
|
"/dev/sdc2",
|
||||||
|
"/dev/sdd2",
|
||||||
|
"/dev/sde2",
|
||||||
|
"/dev/sdf2",
|
||||||
|
"/dev/sdg2",
|
||||||
|
"/dev/sda3",
|
||||||
|
"/dev/sdb3",
|
||||||
|
"/dev/sda4",
|
||||||
|
"/dev/sdb4",
|
||||||
|
"/dev/sda5",
|
||||||
|
"/dev/sda6",
|
||||||
|
"/dev/sda7",
|
||||||
|
"/dev/sda8",
|
||||||
|
"/dev/nvme0",
|
||||||
|
"/dev/nvme1",
|
||||||
|
"/dev/nvme2"
|
||||||
|
],
|
||||||
|
"description": "Realtime BirdNET soundscape analyzer",
|
||||||
|
"environment": {
|
||||||
|
},
|
||||||
|
"image": "ghcr.io/alexbelgium/birdnet-pi2-{arch}",
|
||||||
|
"init": false,
|
||||||
|
"map": [
|
||||||
|
"addon_config:rw",
|
||||||
|
"media:rw",
|
||||||
|
"share:rw"
|
||||||
|
],
|
||||||
|
"name": "zzz Do not use",
|
||||||
|
"options": {
|
||||||
|
"COMMAND": "realtime"
|
||||||
|
},
|
||||||
|
"panel_icon": "mdi:bird",
|
||||||
|
"ports": {
|
||||||
|
"80/tcp": 80
|
||||||
|
},
|
||||||
|
"ports_description": {
|
||||||
|
"80/tcp": "web ui",
|
||||||
|
"8888/tcp": "web terminal",
|
||||||
|
"8080/tcp": "log",
|
||||||
|
"8501/tcp": "streamlit"
|
||||||
|
},
|
||||||
|
"privileged": [
|
||||||
|
"SYS_ADMIN",
|
||||||
|
"DAC_READ_SEARCH"
|
||||||
|
],
|
||||||
|
"schema": {
|
||||||
|
"ALSA_CARD": "int?",
|
||||||
|
"COMMAND": "str",
|
||||||
|
"TZ": "str?",
|
||||||
|
"cifsdomain": "str?",
|
||||||
|
"cifspassword": "str?",
|
||||||
|
"cifsusername": "str?",
|
||||||
|
"localdisks": "str?",
|
||||||
|
"networkdisks": "str?"
|
||||||
|
},
|
||||||
|
"slug": "birdnet-pi2",
|
||||||
|
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/birdnet-pi2",
|
||||||
|
"version": "1.4",
|
||||||
|
"video": true
|
||||||
|
}
|
||||||
BIN
zzz_draft_birdnet-pi2/icon.png
Normal file
BIN
zzz_draft_birdnet-pi2/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 40 KiB |
BIN
zzz_draft_birdnet-pi2/logo.png
Normal file
BIN
zzz_draft_birdnet-pi2/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 40 KiB |
14
zzz_draft_birdnet-pi2/rootfs/custom-services.d/00_dbus
Normal file
14
zzz_draft_birdnet-pi2/rootfs/custom-services.d/00_dbus
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
# Waiting for dbus
|
||||||
|
until [[ -e /var/run/dbus/system_bus_socket ]]; do
|
||||||
|
sleep 1s
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "Starting service: pulseaudio"
|
||||||
|
while :
|
||||||
|
do
|
||||||
|
if [[ ! $(/usr/bin/pulseaudio --check) ]]; then
|
||||||
|
/usr/bin/pulseaudio --system
|
||||||
|
fi
|
||||||
|
sleep 10
|
||||||
|
done
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/with-contenv bash
|
||||||
|
# shellcheck shell=bash
|
||||||
|
|
||||||
|
# Waiting for dbus
|
||||||
|
until [[ -e /var/run/dbus/system_bus_socket ]]; do
|
||||||
|
sleep 1s
|
||||||
|
done
|
||||||
|
echo "Starting service: php pfm"
|
||||||
|
exec /usr/sbin/php-fpm* -F
|
||||||
9
zzz_draft_birdnet-pi2/rootfs/custom-services.d/01_avahi
Normal file
9
zzz_draft_birdnet-pi2/rootfs/custom-services.d/01_avahi
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
# Waiting for dbus
|
||||||
|
until [[ -e /var/run/dbus/system_bus_socket ]]; do
|
||||||
|
sleep 1s
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "Starting service: avahi daemon"
|
||||||
|
exec \
|
||||||
|
avahi-daemon --no-chroot
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
echo "Starting service: birdnet analysis"
|
||||||
|
exec \
|
||||||
|
s6-setuidgid "$USER" "$PYTHON_VIRTUAL_ENV" /usr/local/bin/birdnet_analysis.py
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
echo "Starting service: birdnet log"
|
||||||
|
exec \
|
||||||
|
s6-setuidgid "$USER" /usr/local/bin/gotty --address localhost -p 8080 --path log --title-format "birdnet-pi2 Log" birdnet_log.sh
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
echo "Starting service: birdnet recording"
|
||||||
|
exec \
|
||||||
|
s6-setuidgid "$USER" /usr/local/bin/birdnet_recording.sh
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
echo "Starting service: birdnet stats"
|
||||||
|
exec \
|
||||||
|
s6-setuidgid "$USER" "$HOME"/birdnet-pi2/birdnet/bin/streamlit run "$HOME"/birdnet-pi2/scripts/plotly_streamlit.py --browser.gatherUsageStats false --server.address localhost --server.baseUrlPath "/stats"
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
echo "Starting service: chart viewer"
|
||||||
|
exec \
|
||||||
|
s6-setuidgid "$USER" "$PYTHON_VIRTUAL_ENV" /usr/local/bin/daily_plot.py --daemon --sleep 2
|
||||||
9
zzz_draft_birdnet-pi2/rootfs/custom-services.d/01_getty
Normal file
9
zzz_draft_birdnet-pi2/rootfs/custom-services.d/01_getty
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
echo "Starting service: getty"
|
||||||
|
until [[ -e /var/run/dbus/system_bus_socket ]]; do
|
||||||
|
sleep 1s
|
||||||
|
done
|
||||||
|
|
||||||
|
exec \
|
||||||
|
s6-setuidgid "$USER" /sbin/agetty --autologin "${USER}"
|
||||||
|
--noclear %I "$TERM"
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
echo "Starting service: livestream"
|
||||||
|
until [[ -e /var/run/dbus/system_bus_socket ]]; do
|
||||||
|
sleep 1s
|
||||||
|
done
|
||||||
|
|
||||||
|
exec \
|
||||||
|
s6-setuidgid "$USER" /usr/local/bin/livestream.sh
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
echo "Starting service: spectrogram viewer"
|
||||||
|
exec \
|
||||||
|
s6-setuidgid "$USER" /usr/local/bin/spectrogram.sh
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
echo "Starting service: web terminal"
|
||||||
|
exec \
|
||||||
|
s6-setuidgid "$USER" /usr/local/bin/gotty --address localhost -w -p 8888 --path terminal --title-format "birdnet-pi2 Terminal" login
|
||||||
12
zzz_draft_birdnet-pi2/rootfs/custom-services.d/02_caddy
Normal file
12
zzz_draft_birdnet-pi2/rootfs/custom-services.d/02_caddy
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
# Dependencies
|
||||||
|
until [[ -e /var/run/dbus/system_bus_socket ]] && [[ -e /run/php/php*-fpm.sock ]]; do
|
||||||
|
sleep 1s
|
||||||
|
done
|
||||||
|
|
||||||
|
# Correct fpm.sock
|
||||||
|
sed -i "s|/run/php/php-fpm.sock|$(find /run/php -name *.sock)|g" /etc/caddy/Caddyfile
|
||||||
|
|
||||||
|
echo "Starting service: caddy"
|
||||||
|
exec \
|
||||||
|
s6-setuidgid "$USER" /usr/bin/caddy run --config /etc/caddy/Caddyfile
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
echo "Starting service: avahi alias"
|
||||||
|
exec \
|
||||||
|
s6-setuidgid "$USER" /usr/bin/avahi-publish -a -R %I "$(hostname -I |cut -d' ' -f1)"
|
||||||
24
zzz_draft_birdnet-pi2/rootfs/etc/cont-init.d/99-run.sh
Normal file
24
zzz_draft_birdnet-pi2/rootfs/etc/cont-init.d/99-run.sh
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
#!/command/with-contenv bashio
|
||||||
|
# shellcheck shell=bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
#################
|
||||||
|
# INITALISATION #
|
||||||
|
#################
|
||||||
|
|
||||||
|
# Starting dbus
|
||||||
|
echo "Starting service: dbus"
|
||||||
|
service dbus start
|
||||||
|
|
||||||
|
bashio::log.info "ALSA_CARD option is set to $(bashio::config "ALSA_CARD"). If the microphone doesn't work, please adapt it"
|
||||||
|
echo " "
|
||||||
|
|
||||||
|
########################
|
||||||
|
# CONFIGURE birdnet-pi2 #
|
||||||
|
########################
|
||||||
|
|
||||||
|
bashio::log.info "Starting app..."
|
||||||
|
|
||||||
|
if [ ! -f /config/birdnet.conf ]; then
|
||||||
|
cp /etc/birdnet/birdnet.conf /config
|
||||||
|
fi
|
||||||
BIN
zzz_draft_birdnet-pi2/stats.png
Normal file
BIN
zzz_draft_birdnet-pi2/stats.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.8 KiB |
Reference in New Issue
Block a user