Fix ingress implementation with proper s6 services

Co-authored-by: alexbelgium <44178713+alexbelgium@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-02-19 09:20:55 +00:00
parent e6357c3ee4
commit 0ac9b5136b
6 changed files with 55 additions and 16 deletions

View File

@@ -2,15 +2,13 @@
# shellcheck shell=bash
set -e
rm -r /app/config
# Setup config directory
if [ -d /app/config ]; then
rm -r /app/config
fi
ln -sf /config /app/config
# Set permissions
chown -R "$PUID:$PGID" /config || true
cd /app || true
bashio::log.info "Starting NGinx..."
nginx &
bashio::log.info "Starting app"
exec npm start
bashio::log.info "Seerr initialization complete"