删除 'Dockerfile'

This commit is contained in:
2025-11-08 12:31:02 +00:00
committed by admin@cnod.net
parent d8f8c259d8
commit 8f7c0da3b7
19 changed files with 722 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#!/usr/bin/env bashio
# vim: ft=bash
# ==============================================================================
# s6-overlay docs: https://github.com/just-containers/s6-overlay
# ==============================================================================
if test "$1" -eq 256 ; then
e=$((128 + $2))
else
e="$1"
fi
if test "$e" -ne 0; then
bashio::log.warning "matter-server service exited with code $e (by signal $2)."
echo "$e" > /run/s6-linux-init-container-results/exitcode
exec /run/s6/basedir/bin/halt
else
bashio::log.info "matter-server service exited with code $e (by signal $2)."
fi