v11.2.0 | Python 3.11+ | Ember
Download Hub

Use the repo-hosted runner scripts and keep the website light

The repository already ships Docker runner scripts for Linux, macOS, Windows, and Termux. This page links directly to those maintained files so the docs site never drifts away from the runtime wrapper logic.

Overview

What the Docker scripts wrap

Compose runtime

The scripts wrap docker/docker-compose.yml and provide a safer, guided handoff into Silinosic-X commands.

Host checks

They check Docker installation, daemon availability, Compose support, and some basic resource readiness before launching the runtime.

Runner extras

Upgrade flags, diagnostics, context switching, Tor-service controls, and no-cache rebuild flows are all handled at the wrapper layer.

Scripts

Direct links to the maintained wrappers

L
Linux runner
docker-scripts/run-docker-linux.sh
M
macOS runner
docker-scripts/run-docker-macos.sh
W
Windows runner
docker-scripts/run-docker-windows.ps1
T
Termux runner
docker-scripts/run-docker-termux.sh
D
Docker docs
docker/README.md
R
Runner docs
docker-scripts/README.md
Usage

The wrappers forward normal Silinosic-X commands after handling runner flags

shell
./docker-scripts/run-docker-linux.sh
./docker-scripts/run-docker-linux.sh profile alice --html
./docker-scripts/run-docker-linux.sh --runner-use-tor-service profile alice --tor --html
./docker-scripts/run-docker-linux.sh --runner-diagnose
powershell -ExecutionPolicy Bypass -File .\docker-scripts\run-docker-windows.ps1 profile alice --html
Runner flags
--runner-help, --runner-build, --runner-pull, --runner-upgrade, --runner-diagnose, --runner-context.
Forwarded args
Everything not prefixed by --runner- is forwarded to silinosic-x.py.
Prompt fallback
If no forwarded arguments are supplied, the wrapper starts the Silinosic-X prompt mode.
Paths

Where the runtime pieces live

docker/
Compose files, Dockerfiles, Tor wrappers, and container runtime assets.
docker-scripts/
Host-native launch scripts for Linux, macOS, Windows, and Termux.
output/
Runtime artifacts such as HTML, CLI, JSON, CSV, SQL, DOCX, PDF, and logs under the configured output root.
docs/website/web_assets/installers/
Reserved website asset space if mirrored installer copies are ever added later.
Why the website does not duplicate the scripts
The docs site links to the repository versions directly so there is one source of truth for runner behavior. That keeps upgrades, diagnostics, and usage examples aligned with the actual wrapper code.