This commit is contained in:
Alexandre
2025-07-15 21:32:32 +02:00
parent add1fa3b20
commit 211bcc6556
7 changed files with 55 additions and 12 deletions

View File

@@ -3,11 +3,16 @@
# shellcheck disable=SC2155,SC2016
set -e
bashio::log.info "Starting ente..."
exec /usr/bin/museum &
bashio::log.info "Starting services"
bashio::log.info "Starting minio..."
exec /usr/local/bin/minio server /data --address ":3200" &
bashio::log.info "Starting ente-web..."
[ -n "$DISABLE_WEB_UI" ] || exec /usr/bin/ente-web
# Loop through each directory in /etc/services.d/
for dir in /etc/services.d/*; do
# Check if the directory contains a 'run' file
if [ -f "$dir/run" ]; then
# Execute the 'run' file
echo "Starting service in $dir"
bash "$dir/run"
else
echo "No run file found in $dir"
fi
done