Initial commit

This commit is contained in:
2026-07-24 15:07:31 +05:00
commit 9b71b37dd0
8 changed files with 386 additions and 0 deletions

14
docker-entrypoint.sh Normal file
View File

@@ -0,0 +1,14 @@
#!/bin/sh
set -eu
mkdir -p /run/dbus
rm -f /run/dbus/pid
if [[ ! -s /etc/machine-id ]]; then
dbus-uuidgen --ensure=/etc/machine-id
fi
dbus-daemon --system --fork
exec "$@"