orchardcore-docker

orchardcore-docker is a skill for Claude Code, Codex from CrestApps/CrestApps.AgentSkills. It costs 168 tokens per session (2,078 once invoked), scanned A, original, MIT.

A guide to running Orchard Core applications in Docker containers. Docker packages an application and its dependencies into an isolated, repeatable environment.

In plain words
What is it for?
Use it to create Dockerfiles, multi-container setups, HTTPS configuration, image builds, and continuous integration or delivery workflows.
Why use it?
It helps keep development, testing, and production environments consistent and makes database and HTTPS setup easier to organize.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/crestapps/crestapps.agentskills/orchardcore-docker
Any agent
npx skills add CrestApps/CrestApps.AgentSkills --skill orchardcore-docker
Clone the repo
git clone --depth 1 https://github.com/CrestApps/CrestApps.AgentSkills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for orchardcore-docker

README.md
[![agentmods](https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-docker.svg)](https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-docker)
Your own site
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-docker"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-docker.svg" alt="Measured on agentmods" height="20"></a>
Per session 168 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,078 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00168 $0.02078
Opus 5 $0.00084 $0.01039
Sonnet 5 $0.00034 $0.00416
Haiku 4.5 $0.00017 $0.00208

Measured 2d ago against content hash 43c9157aee56, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

orchardcore-docker scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/orchardcore/skills/orchardcore-docker/SKILL.md · 281 lines

How it starts

The opening of the file, as written. The whole thing — 281 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Orchard Core Docker - Prompt Templates

Containerize Orchard Core with Docker

You are an Orchard Core expert. Generate Dockerfiles, docker-compose configurations, and deployment setups for containerizing Orchard Core applications with support for multiple databases, HTTPS, and CI/CD pipelines.

Guidelines

  • Use multi-stage builds to keep the final image small — build with the SDK image, run with the ASP.NET runtime image.
  • Label intermediate build stages with LABEL stage=build-env to enable easy pruning.
  • Always include a .dockerignore file to exclude App_Data/, bin/, and obj/ directories.
  • Use docker-compose to orchestrate Orchard Core with database services (SQL Server, MySQL, PostgreSQL).
  • For HTTPS in containers, mount ASP.NET Core developer certificates or use production certificates.
  • Prune intermediate images after building to reclaim disk space.
  • Target the appropriate .NET base images for your environment and framework version.
  • For CI/CD, consider using pre-built artifacts instead of intermediate build stages for faster builds.
  • All recipe JSON must be wrapped in { "steps": [...] }.
  • All C# classes must use the sealed modifier.

Multi-Stage Dockerfile

Use a multi-stage Dockerfile to build and publish the Orchard Core application with the SDK, then create a lean runtime image:

# Build stage using .NET SDK
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build-env
LABEL stage=build-env
WORKDIR /app

# Copy source code and publish
COPY ./src /app
RUN dotnet publish /app/OrchardCore.Cms.Web -c Release -o ./build/release

# Runtime stage using ASP.NET runtime only
FROM mcr.microsoft.com/dotnet/aspnet:10.0
EXPOSE 80
ENV ASPNETCORE_URLS=http://+:80
WORKDIR /app
COPY --from=build-env /app/build/release .
ENTRYPOINT ["dotnet", "OrchardCore.Cms.Web.dll"]

Custom Application Dockerfile

For a custom Orchard Core application (not from source), adapt the Dockerfile to your project structure:

FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build-env
LABEL stage=build-env
WORKDIR /app

# Copy solution and project files first for layer caching
COPY *.sln .
COPY src/**/*.csproj ./src/
RUN dotnet restore

# Copy full source and publish
COPY . .
RUN dotnet publish src/MyOrchardApp.Web -c Release -o /app/publish

# Runtime image
FROM mcr.microsoft.com/dotnet/aspnet:10.0
EXPOSE 80
ENV ASPNETCORE_URLS=http://+:80
WORKDIR /app
COPY --from=build-env /app/publish .
ENTRYPOINT ["dotnet", "MyOrchardApp.Web.dll"]

Read the full file on GitHub · 281 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 281 lines · 168 tokens per session scan A 43c9157aee56

Subscribe to this mod's changes

orchardcore-docker is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 7d ago), licensed MIT. It adds 168 tokens to every session and 2,078 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

aws-ecs-service-remediation-operator

Correct AWS ECS and Fargate service definitions, task definition config, deployment parameters, health checks, environment settings, and rollout wiring in-repo. Use for non-destructive repo fixes only; do not force deployments or mutate live services from this role.

VincentChuWaiChow/vanguard-frontier-agentic · 60 tokens

container-image-hardening

Context: Pre-publish hardening steps for a new Dockerfile + GitHub Actions workflow. Apply before the first real image publish so the baseline is clean.

lewing/helix.mcp · 0 tokens

cloud-and-infra

Cloud-native service fingerprints, Kubernetes/container exposure, CI/CD platform exposure, TLS deep audit, and favicon hash pivot for authorized infrastructure recon.

Ap6pack/outrider-recon · 32 tokens

infrastructure

Provides infrastructure and DevOps guidance including deployment, CI/CD, monitoring, containerization, and cloud architecture. Triggers on infrastructure, devops, deployment, docker, kubernetes, ci/cd, monitoring, observability, cloud, scaling, load balancing.

doancan/mags · 56 tokens

shell-docker

Use when editing scripts/.sh, Dockerfile, docker-compose.yml, .github/workflows/.yml. Covers deployment scripts, Docker build, CI pipelines, PM2 management. Do NOT use for backend JS code or frontend code.

chenyuan35/aineedhelpfromotherai · 52 tokens

deployment-patterns

Deployment workflows, CI/CD pipeline patterns, Docker containerization, health checks, rollback strategies, and production readiness checklists for web applications.

JunMystery/Agent-Guidance-Python · 31 tokens