
Deploy from Git
Choose a branch and Linux base, then package and boot-test a public repository as a complete Linux system.
OpenFactory can build a bootable ISO from a GitHub repository by treating the repo as an install source and the Linux image as the runtime environment. Review the generated recipe before building: a repository can be cloned successfully even when its install intent, runtime dependencies, or acceptance checks were inferred incorrectly.
Start with a public repository that can be installed without an interactive terminal. A useful README or INSTALL file tells the builder which directory to use, which packages to install, how to start the application, and which observable port, command, or endpoint should be checked after boot.
/opt/services/<repository-name> and reads README, INSTALL, and linked setup docs.Written install instructions take priority because they can describe project-specific setup, service names, and startup behavior. When those instructions are missing, OpenFactory looks for common project files to infer the toolchain:
Dockerfile or docker-compose for container-defined services.package.json or requirements.txt for Node and Python applications.go.mod or Cargo.toml for Go and Rust builds.Makefile for projects that expose repeatable build and install targets.A completed image build means the builder produced an artifact; it does not show that every requested dependency, service, or behavior is present. Review which boot, login, package, and network checks actually ran and inspect their logs. Before using the artifact elsewhere, add an application-specific check for the service, port, command, or HTTP endpoint that matters to the repository. Each passing check is evidence only for its declared scope.
Containers are ideal when you only need an app process. A bootable ISO is better when the operating system matters too: kernel modules, systemd units, local users, hardware access, VPN routing, full-machine monitoring, or handoff into an independently operated VM workflow.
For prompt-only builds, use the custom Linux ISO builder. For repeatable image governance, pair this workflow with the Linux image builder. To build now, open the Git-to-ISO form.
Yes, if the repository has enough installation information or project markers to package it into a Linux system. OpenFactory clones the repo, reads README and INSTALL docs, checks common markers like Dockerfile and package.json, and builds a Linux image around the app.
Services with clear install docs, Dockerfiles, docker-compose files, package.json, requirements.txt, go.mod, Cargo.toml, Makefiles, or system packages are the best first candidates.
No. A Docker image packages an application container. A bootable ISO packages an operating system that can boot as a VM or machine and include the application, services, users, networking, and validation steps.
No. OpenFactory reads README and INSTALL files first. It can also use project markers such as package.json, requirements.txt, go.mod, Cargo.toml, Makefile, Dockerfile, or docker-compose when the install docs are incomplete.
The repository is still cloned into /opt/services/ in the image, but OpenFactory may not be able to configure the application as a running service. Add exact non-interactive install and start commands to README or INSTALL, then rebuild.
The direct Git-to-ISO form accepts a public HTTPS repository URL. Do not put GitHub tokens or other credentials in the URL. Keep secret values out of the repository and configure them through an appropriate private deployment workflow.
Build a bootable Linux image from a prompt, repo, or recipe.
Treat operating system images as reviewed, testable artifacts.
Generate bootable app stacks for popular self-hosted services.
Connect OpenFactory workflows to APIs, MCP, and agent tooling.
Use OpenFactory to turn the same requirements into a bootable, testable Linux system.