Install
openclaw skills install @asif2bd/xcloud-docker-deployxCloud Docker Deploy v1.4.1 — a confirmation-gated skill for preparing projects for xCloud. It inspects or changes files only after user consent, generates Docker/GHCR deployment files, fixes xCloud port rules, and routes live API work only after a separate explicit token-consent step.
openclaw skills install @asif2bd/xcloud-docker-deployBuilt for xCloud Custom Docker deployments by Asif2BD · GitHub · Latest Release · xCloud Agent Skills
This is a deployment-preparation skill. Before it inspects a project, edits files, recommends production changes, asks for API tokens, or routes to live xCloud API skills, the agent must confirm the exact action with the user.
Use this safe opening:
I can do read-only analysis first, or I can generate deployment files after your confirmation. I will not push, deploy, collect tokens, or call live xCloud APIs unless you explicitly approve that exact step.
Use normal human language. Ask:
This is my project. I want to deploy it on xCloud. Please inspect it, decide whether it should use xCloud native deployment or Docker, generate the proper Dockerfile, Docker image workflow, docker-compose.yml,
.env.example, and give me the exact xCloud deployment steps.
If you already have a compose file, ask:
Please make this
docker-compose.ymlwork on xCloud. Fix anything xCloud does not support, especially Docker build steps, proxy services, and host ports 80/443.
The agent should then:
xCloud port-safety notice: final compose output must never bind host port
80or443. If an app listens on container port80, use3080:80and set xCloud's exposed/primary port to3080.
Adapt any docker-compose.yml to work with xCloud — a git-push Docker deployment platform.
git push → xCloud runs: docker-compose pull && docker-compose up -d
xCloud never runs docker build. Images must be pre-built in a public registry. SSL, reverse proxy, and domain routing are handled by xCloud — your stack must not duplicate them.
Read references/xcloud-constraints.md for the full ruleset before making changes.
xCloud now publishes API-backed agent skills for operational work:
| Official skill | Owns |
|---|---|
xcloud:servers | Servers, PHP, databases, cron, firewall/fail2ban, sudo users, WordPress provisioning |
xcloud:sites | Site lifecycle, status, backups, domains, cache, SSH, site cron, git |
xcloud:wordpress | WordPress plugins, themes, updates, debug, magic login, vulnerabilities, PageSpeed |
xcloud:ssl | SSL certificates: view, install, renew, status, delete |
xcloud:account | Current user, API tokens, Cloudflare integrations, blueprints, health |
Use this skill for project detection, Dockerfile/compose generation, GHCR CI, and xCloud Custom Docker readiness. Use the official API skills when the user asks to inspect or mutate live xCloud resources.
This Docker deploy skill can work alongside the official xCloud API skills when those skills/tools are available. If a task needs live xCloud data or live actions:
XCLOUD_API_TOKEN.xcloud:servers for server capacity, PHP, databases, cron, firewall, sudo users, WordPress provisioningxcloud:sites for site status, domains, backups, cache, SSH, git, deployment logsxcloud:wordpress for WordPress plugins, themes, updates, debug, magic login, vulnerabilities, PageSpeedxcloud:ssl for certificatesxcloud:account for current user, API tokens, Cloudflare integrations, blueprints, healthBefore recommending git push, deployment webhooks, migration commands, cache clears, DNS changes, SSL changes, or live API actions:
Before anything else, scan the project directory for these files:
Read DETECT.md for full detection rules. Quick routing:
| Found in project | Stack | Action |
|---|---|---|
wp-config.php or wp-content/ | WordPress | Read references/xcloud-native-wordpress.md |
composer.json + artisan | Laravel | Read references/xcloud-native-laravel.md |
package.json + next.config.* | Next.js | Docker path → use dockerfiles/nextjs.Dockerfile + compose-templates/nextjs-postgres.yml |
package.json (no framework config) | Node.js | Read references/xcloud-native-nodejs.md |
composer.json (no artisan) | PHP | Read references/xcloud-native-php.md |
requirements.txt or pyproject.toml | Python | Docker path → use dockerfiles/python-fastapi.Dockerfile |
go.mod | Go | Docker path — generate Dockerfile manually |
docker-compose.yml exists | Existing Docker | Proceed to Step 1 below |
Dockerfile (no compose) | Build-from-source | Generate compose → Scenario A below |
See references/xcloud-deploy-paths.md for the Native vs Docker decision guide.
Inspect the provided docker-compose.yml:
| Signal | Scenario |
|---|---|
build: or build: context: . | A — Build-from-source |
| Caddy / Traefik / nginx-proxy service | B — Proxy conflict |
Multiple ports: across services | B — Multi-port |
Host port 80 or 443 in any ports: mapping | B — xCloud reserved port conflict |
./nginx.conf:/etc/nginx/... volume mount | B — External config |
Multiple services each with build: | C — Multi-service build |
image: some-public-image, single port | Already compatible — verify port + env vars |
A compose file can trigger multiple scenarios simultaneously (handle A first, then B).
Read
references/scenario-build-source.mdfor full details.
What to do:
build: directive from composeimage: with ghcr.io/OWNER/REPO:latest.github/workflows/docker-build.yml using assets/github-actions-build.yml template.env.example from all ${VAR} referencesDeliverables:
docker-compose.yml.github/workflows/docker-build.yml.env.exampleRead
references/scenario-proxy-conflict.mdfor full details.
What to do:
ports: from app services (replace with expose:)nginx-router service with inline config via configs: block3080) for xCloud to proxyDeliverables:
docker-compose.yml with nginx-router + configs: block.env.exampleRead
references/scenario-multi-service-build.mdfor full details.
When multiple services have build: directives (separate frontend + backend + worker):
What to do:
build:, create a separate GHCR image pathDeliverables:
docker-compose.yml (all build: removed).github/workflows/docker-build.yml (matrix strategy).env.exampleAlways produce complete, copy-paste-ready output:
## Modified docker-compose.yml
[full file]
## .github/workflows/docker-build.yml (Scenario A/C only)
[full file]
## .env.example
[full file]
## xCloud Deploy Steps
1. Push repo to GitHub
2. (Scenario A/C) Wait for GitHub Actions to build image — check Actions tab
3. Server → New Site → Custom Docker → connect repo
4. Exposed port: [PORT]
5. Env vars to add: [list from .env.example]
6. Deploy
build: in the final compose — xCloud silently ignores it80 or 443 in final compose — xCloud's Nginx/SSL layer already owns them80, output 3080:80 and tell xCloud to use exposed/primary port 308080:80, treat it as invalid for xCloud and rewrite it to 3080:80"5432:5432" — use expose: internally)environment:, volumes:, healthcheck:, worker/sidecar servicesexpose: (internal) not ports: (host) for services behind nginx-routerconfigs.content: inline syntax requires Docker Compose v2.23+ — use heredoc command: alternative if uncertainxCloud receives public traffic on 80/443 through its own Nginx and SSL layer. Docker compose should expose one high host port for xCloud to proxy into:
User → xCloud Nginx 80/443 → Docker host port >=1024 → container port
Normalize ports before final output:
| Original mapping | Final xCloud mapping | xCloud exposed/primary port |
|---|---|---|
80:80 | 3080:80 | 3080 |
443:443 | remove | n/a |
8080:80 | prefer 3080:80 unless user explicitly requires 8080 | 3080 |
3000:3000 | allowed | 3000 |
8000:8000 | allowed | 8000 |
Final validation: no ports: mapping may start with 80: or 443:.
See examples/ for ready-made transformations:
examples/rybbit-analytics.md — Caddy + multi-port app (Scenario B)examples/custom-app-dockerfile.md — build-from-source (Scenario A)examples/fullstack-monorepo.md — multi-service build (Scenario C)