Skip to content

Deploy

Deploy applications to VMs, containers, and cloud infrastructure.

Deployment Options

TargetDescriptionUse Case
PHPLaravel/PHP with FrankenPHPWeb applications, APIs
LinuxKitLightweight immutable VMsProduction servers, edge nodes
TemplatesPre-configured VM imagesQuick deployment, dev environments
DockerContainer orchestrationKubernetes, Swarm, ECS

Quick Start

Run a Production Server

bash
# Build and run from template
core vm run --template server-php --var SSH_KEY="$(cat ~/.ssh/id_rsa.pub)"

# Or run a pre-built image
core vm run -d --memory 4096 --cpus 4 server.iso

Deploy to Docker

bash
# Build and push image
core build --type docker --image ghcr.io/myorg/myapp --push

# Deploy with docker-compose
docker compose up -d

Architecture

┌─────────────────────────────────────────────────────────┐
│                    Build Phase                          │
│  core build → Docker images, LinuxKit ISOs, binaries   │
└─────────────────────────────────────────────────────────┘


┌─────────────────────────────────────────────────────────┐
│                   Publish Phase                         │
│  core ci → GitHub, Docker Hub, GHCR, Homebrew, etc.    │
└─────────────────────────────────────────────────────────┘


┌─────────────────────────────────────────────────────────┐
│                   Deploy Phase                          │
│  core vm → LinuxKit VMs, templates, orchestration      │
└─────────────────────────────────────────────────────────┘

CLI Commands

CommandDescription
core vm runRun a LinuxKit image or template
core vm psList running VMs
core vm stopStop a VM
core vm logsView VM logs
core vm execExecute command in VM
core vm templatesManage LinuxKit templates

See the CLI Reference for full command documentation.

Released under the EUPL-1.2 License.